sta_data_rate_subscription.proto 1.33 KB
Newer Older
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
Michel Roy's avatar
Michel Roy committed
  The version of the OpenAPI document: 2.2.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;

import public "models/assoc_sta_subscription_links.proto";
Michel Roy's avatar
Michel Roy committed
import public "models/sta_data_rate_subscription_notification_event.proto";
import public "models/sta_identity.proto";
import public "models/time_stamp.proto";
Michel Roy's avatar
Michel Roy committed
import public "models/websock_notif_config.proto";

message StaDataRateSubscription {

Michel Roy's avatar
Michel Roy committed
  AssocStaSubscriptionLinks Underscorelinks = 1;
Michel Roy's avatar
Michel Roy committed
  string callbackReference = 2;
Michel Roy's avatar
Michel Roy committed
  TimeStamp expiryDeadline = 3;
Michel Roy's avatar
Michel Roy committed
  StaDataRateSubscriptionNotificationEvent notificationEvent = 4;

  // Set for periodic notification reporting. Value indicates the notification period in seconds.
  int32 notificationPeriod = 5;

  // 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 = 6;

  // Identifier(s) to uniquely specify the target client station(s) for the subscription.
  repeated StaIdentity staId = 7;

  // Shall be set to \"StaDataRateSubscription\".
Michel Roy's avatar
Michel Roy committed
  string subscriptionType = 8;

  WebsockNotifConfig websockNotifConfig = 9;