Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / protos / simple.proto
Maxious 1 package tests;
2
3 message Simple {
4 optional double double = 1;
5 optional float float = 2;
6 optional int64 int64 = 3;
7 optional uint64 uint64 = 4;
8 optional int32 int32 = 5;
9 optional fixed64 fixed64 = 6;
10 optional fixed32 fixed32 = 7;
11 optional bool bool = 8;
12 optional string string = 9;
13 optional bytes bytes = 12;
14 optional uint32 uint32 = 13;
15 optional sfixed32 sfixed32 = 15;
16 optional sfixed64 sfixed64 = 16;
17 optional sint32 sint32 = 17;
18 optional sint64 sint64 = 18;
19 }
20