/* 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/download_diagnostics_diagnostics_state.proto"; import public "models/time_stamp.proto"; message DownloadDiagnostics { TimeStamp b_om_time = 1; DownloadDiagnosticsDiagnosticsState diagnostics_state = 2; // The URI for the device to perform the download on. string download_uri = 3; TimeStamp e_om_time = 4; TimeStamp r_om_time = 5; TimeStamp tcp_open_reponse_time = 6; TimeStamp tcp_open_request_time = 7; // The test traffic received in bytes during the FTP/HTTP transaction including FTP/HTTP headers, between b_oMTime and e_oMTime. int32 test_bytes_received = 8; // The total number of bytes received on the Interface between b_om_time and e_om_time. int32 total_bytes_received = 9; }