/* ETSI GS MEC 028 - WLAN Access Information API The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI The version of the OpenAPI document: 2.2.1 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec028; import public "models/ap_identity.proto"; import public "models/assoc_sta_subscription_links.proto"; import public "models/assoc_sta_subscription_notification_event.proto"; import public "models/time_stamp.proto"; import public "models/websock_notif_config.proto"; message AssocStaSubscription { AssocStaSubscriptionLinks Underscorelinks = 1; ApIdentity apId = 2; string callbackReference = 3; TimeStamp expiryDeadline = 4; AssocStaSubscriptionNotificationEvent notificationEvent = 5; // Set for periodic notification reporting. Value indicates the notification period in seconds. int32 notificationPeriod = 6; // Set to TRUE by the service consumer to request a test notification on the callbackReference URI to determine if it is reachable by the WAIS for notifications. bool requestTestNotification = 7; // Shall be set to \"AssocStaSubscription\". string subscriptionType = 8; WebsockNotifConfig websockNotifConfig = 9; }