...
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_duration_proto = "google/protobuf/duration.proto"
14
15
16 const (
17 Duration_message_name protoreflect.Name = "Duration"
18 Duration_message_fullname protoreflect.FullName = "google.protobuf.Duration"
19 )
20
21
22 const (
23 Duration_Seconds_field_name protoreflect.Name = "seconds"
24 Duration_Nanos_field_name protoreflect.Name = "nanos"
25
26 Duration_Seconds_field_fullname protoreflect.FullName = "google.protobuf.Duration.seconds"
27 Duration_Nanos_field_fullname protoreflect.FullName = "google.protobuf.Duration.nanos"
28 )
29
30
31 const (
32 Duration_Seconds_field_number protoreflect.FieldNumber = 1
33 Duration_Nanos_field_number protoreflect.FieldNumber = 2
34 )
35
View as plain text