/* 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_associated.proto"; import public "models/beacon_report.proto"; import public "models/channel_load.proto"; import public "models/neighbor_report.proto"; import public "models/rssi.proto"; import public "models/sta_data_rate.proto"; import public "models/sta_identity.proto"; import public "models/sta_statistics.proto"; import public "models/time_stamp.proto"; message StaInfo { ApAssociated apAssociated = 1; // Beacon Report as defined in IEEE 802.11-2016 [8]. repeated BeaconReport beaconReport = 2; // Channel currently used by the station to connect with its associated Access Point. int32 channel = 3; // Channel Load reports as seen by the station as defined IEEEĀ 802.11-2016 [8]. Channel Load reports may be configured for any channel, including the station's current channel for association. repeated ChannelLoad channelLoad = 4; // Information about neighbor Access Points seen by the station as defined IEEE 802.11-2016 [8]. repeated NeighborReport neighborReport = 5; Rssi rssi = 6; StaDataRate staDataRate = 7; StaIdentity staId = 8; // Statistics as defined in IEEE 802.11-2016 [8] for the client station collected over measurement duration. repeated StaStatistics staStatistics = 9; TimeStamp timeStamp = 10; }