assoc_sta_notification.proto 691 Bytes
Newer Older
/*
  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.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;

import public "models/ap_identity.proto";
import public "models/sta_identity.proto";
import public "models/time_stamp.proto";

message AssocStaNotification {

  ApIdentity ap_id = 1;

  // Shall be set to \"AssocStaNotification\".
  string notification_type = 2;

  // Identifier(s) to uniquely specify the client station(s) associated.
  repeated StaIdentity sta_id = 3;

  TimeStamp time_stamp = 4;

}