sta_info.proto 886 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_associated.proto";
import public "models/beacon_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 ap_associated = 1;

  BeaconReport beacon_report = 2;

  // Channel currently used by the station.
  int32 channel = 3;

  Rssi rssi = 4;

  StaDataRate sta_data_rate = 5;

  StaIdentity sta_id = 6;

  StaStatistics sta_statistics = 7;

  TimeStamp time_stamp = 8;

}