/* 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/time_stamp.proto"; message CableLineInfoCmInfoCmDpvStats { // The average latency measurement. int32 avg_latency = 1; // It represents the interface Index of the Downstream Interface where the measurements are taken. string if_index = 2; // The last latency measurement. int32 last_meas_latency = 3; TimeStamp last_meas_time = 4; // The maximum latency measurement. int32 max_latency = 5; // The minimum latency measurement. int32 min_latency = 6; // The number of latency measurements made. int32 num_meas = 7; }