sta_statistics_config.proto 759 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/sta_identity.proto";

message StaStatisticsConfig {

  // As per table T 9-114 of IEEE 802.11-2012 [8].
  int32 group_identity = 1;

  StaIdentity sta_id = 2;

  int32 trigger_condition = 3;

  // The Trigger Timeout field contains a value in units of 100 TUs during which a measuring STA does not generate further triggered STA Statistics Reports after a trigger condition has been met.
  int32 trigger_timeout = 4;

  bool triggered_report = 5;

}