/* 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_reporting_config.proto"; message BeaconRequestConfig { BeaconReportingConfig beaconReportingConf = 1; // The BSSID field indicates the BSS for which a beacon report is requested. If absent, the requested beacon reports should include all BSSs on the channel. string bssid = 2; // Channel number to scan. A Channel Number of 0 indicates a request to make iterative measurements for all supported channels in the Operating Class where the measurement is permitted on the channel and the channel is valid for the current regulatory domain. A Channel Number of 255 indicates a request to make iterative measurements for all supported channels in the current Operating Class listed in the latest AP Channel Report received from the serving AP. int32 channelId = 3; // 0 for passive. 1 for active. 2 for beacon table. int32 measurementMode = 4; // Operating Class field indicates an operating class value as defined in Annex E within IEEE 802.112016 [8]. int32 operatingClass = 5; // The SSID subelement indicates the ESS or IBSS for which a beacon report is requested. string ssid = 6; }