1
0
Fork 0
python-aristaproto/tests/inputs/repeated_duration_timestamp/repeated_duration_timestamp.proto

13 lines
263 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package repeated_duration_timestamp;
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
message Test {
repeated google.protobuf.Timestamp times = 1;
repeated google.protobuf.Duration durations = 2;
}