pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
604 B
25 lines
604 B
syntax = "proto2";
|
|
|
|
message ComplexProtoMessage {
|
|
message InnerMessage {
|
|
optional string text = 1;
|
|
repeated uint32 numbers = 2;
|
|
}
|
|
message InnerBuffer {
|
|
message Flags {
|
|
optional bool flag = 1;
|
|
}
|
|
|
|
optional bytes data = 1;
|
|
repeated .ComplexProtoMessage.InnerBuffer.Flags flags = 2;
|
|
}
|
|
|
|
optional uint32 number32 = 1;
|
|
optional uint64 number64 = 2;
|
|
|
|
repeated uint32 list_number32 = 3;
|
|
repeated uint64 list_number64 = 4;
|
|
|
|
repeated .ComplexProtoMessage.InnerMessage messages = 5;
|
|
repeated .ComplexProtoMessage.InnerBuffer buffers = 6;
|
|
}
|
|
|