...
1
2
3
4
5
6
7 package genid
8
9 import (
10 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
11 )
12
13 const File_google_protobuf_timestamp_proto = "google/protobuf/timestamp.proto"
14
15
16 const (
17 Timestamp_message_name protoreflect.Name = "Timestamp"
18 Timestamp_message_fullname protoreflect.FullName = "google.protobuf.Timestamp"
19 )
20
21
22 const (
23 Timestamp_Seconds_field_name protoreflect.Name = "seconds"
24 Timestamp_Nanos_field_name protoreflect.Name = "nanos"
25
26 Timestamp_Seconds_field_fullname protoreflect.FullName = "google.protobuf.Timestamp.seconds"
27 Timestamp_Nanos_field_fullname protoreflect.FullName = "google.protobuf.Timestamp.nanos"
28 )
29
30
31 const (
32 Timestamp_Seconds_field_number protoreflect.FieldNumber = 1
33 Timestamp_Nanos_field_number protoreflect.FieldNumber = 2
34 )
35
View as plain text