• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3import "google/protobuf/timestamp.proto";
4import "google/protobuf/duration.proto";
5import "b/b.proto";
6import "types/types.proto";
7
8package a;
9
10message A {
11    string name = 1;
12
13    a.b.B b = 2;
14
15    google.protobuf.Timestamp timestamp = 3;
16
17    google.protobuf.Duration duration = 4;
18
19    Types types = 5;
20}
21