"TP/git@forge.etsi.org:cim/ngsi-ld-test-suite.git" did not exist on "6dea859890f912886752b675bbf0ac0f627e3b6c"
Newer
Older
syntax = "proto3";
package an_epon_pm_onu_traffic;
message EponPmOnuTraffics {
message EponPmOnuTraffic {
//The name of ONU.
string name = 1;
//Average transmit rate of the ONU.The unit is kbps.
uint32 tx_rate = 2;
//Average receive rate of the ONU.The unit is kbps.
uint32 rx_rate = 3;
//Peak transmit rate of the ONU in seconds,The unit is kbps
uint32 tx_peak_rate = 4;
//Peak receive rate of the port in seconds.The unit is kbps
uint32 rx_peak_rate = 5;
}
repeated EponPmOnuTraffic epon_pm_onu_traffic = 1;
}