/* ETSI GS MEC 029 Fixed Access Information API ETSI GS MEC 029 Fixed Access Information API described using OpenAPI. The version of the OpenAPI document: 2.1.1 Contact: cti_support@etsi.org Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec029; option java_multiple_files=true; import public "models/fa_info_connectivity_info_interface_type.proto"; import public "models/fa_info_connectivity_info_last_mile_tech.proto"; message FaInfoConnectivityInfo { // The bandwidth (in Mbps) from the network towards the customer site. int32 dsbw = 1; FaInfoConnectivityInfoInterfaceType interface_type = 2; FaInfoConnectivityInfoLastMileTech last_mile_tech = 3; // Maximum baseline latency (in ms) between customer site and service edge node. int32 latency = 4; // The bandwidth (in Mbps) from the customer site towards the network. int32 usbw = 5; }