/* 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 BeaconReport { // The BSSID field indicates the BSSID of the BSS(s) for which a beacon report has been received. repeated string bss_id = 1; // Channel number where the beacon was received. int32 channel_id = 2; // Measurement ID of the Measurement configuration applied to this Beacon Report. string measurement_id = 3; // As in table T9-89 of IEEE 802.11-2012 [8]. int32 reporting_condition = 4; // (Optional) The SSID subelement indicates the ESS(s) or IBSS(s) for which a beacon report is received. repeated string ss_id = 5; StaIdentity sta_id = 6; }