/* 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 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec029; import public "models/download_diagnostics_diagnostics_state.proto"; import public "models/time_stamp.proto"; message DownloadDiagnostics { TimeStamp bOMTime = 1; DownloadDiagnosticsDiagnosticsState diagnosticsState = 2; // The URI for the device to perform the download on. string downloadURI = 3; TimeStamp eOMTime = 4; TimeStamp rOMTime = 5; TimeStamp tCPOpenReponseTime = 6; TimeStamp tCPOpenRequestTime = 7; // The test traffic received in bytes during the FTP/HTTP transaction including FTP/HTTP headers, between bOMTime and eOMTime. int32 testBytesReceived = 8; // The total number of bytes received on the Interface between bOMTime and eOMTime. int32 totalBytesReceived = 9; }