/* 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/beacon_request_config.proto"; import public "models/channel_load_config.proto"; import public "models/neighbor_report_config.proto"; import public "models/sta_statistics_config.proto"; message MeasurementInfo { BeaconRequestConfig beaconRequestConf = 1; ChannelLoadConfig channelLoadConf = 2; // Duration of the measurement in Time Units (TUs) of 1 024 µs, as defined in section 11.11.4 of IEEE 802.11-2016 [8]. If not provided, the underlying system may utilize a default configuration that will be indicated in resulting measurement reports. int32 measurementDuration = 3; NeighborReportConfig neighborReportConf = 4; // Random interval to be used for starting the measurement in TUs of 1 024 µs, as specified in section 11.11.3 of IEEE 802.11-2016 [8]. If not provided, the underlying system may utilize a default configuration that will be indicated in resulting measurement reports. int32 randomInterval = 5; StaStatisticsConfig staStatisticsConf = 6; }