forked from TrueCloudLab/frostfs-api-go
a7a8fc33bb
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
20 lines
No EOL
356 B
Protocol Buffer
20 lines
No EOL
356 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
message Primitives {
|
|
bytes field_a = 1;
|
|
string field_b = 2;
|
|
bool field_c = 200;
|
|
int32 field_d = 201;
|
|
uint32 field_e = 202;
|
|
int64 field_f = 203;
|
|
uint64 field_g = 204;
|
|
|
|
enum SomeEnum {
|
|
UNKNOWN = 0;
|
|
POSITIVE = 1;
|
|
NEGATIVE = -1;
|
|
}
|
|
SomeEnum field_h = 300;
|
|
} |