assoc_sta_subscription_notification_event.proto 762 Bytes
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  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;


message AssocStaSubscriptionNotificationEvent {

  // Number of connected stations threshold for trigger-based event reporting.
  int32 threshold = 1;

  // Trigger for the notification: 1 = Notification issued when the number of connected stations is greater than or equal to the threshold. 2 = Notification issued when the number of connected stations is less than or equal to the threshold.
  enum TriggerEnum {
    _1 = 0;
    _2 = 1;
  }

  TriggerEnum trigger = 2;

}