/* 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/assoc_sta_notification.proto"; import public "models/sta_data_rate.proto"; import public "models/sta_data_rate_notification.proto"; import public "models/sta_identity.proto"; import public "models/time_stamp.proto"; message InlineNotification { ApIdentity ap_id = 1; // Shall be set to \"StaDataRateNotification\". string notification_type = 2; // Identifier(s) to uniquely specify the client station(s) associated. repeated StaIdentity sta_id = 3; TimeStamp time_stamp = 4; // Data rates of a client station. repeated StaDataRate sta_data_rate = 5; }