struct.pb.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/struct.proto
  3. package structpb
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. // `NullValue` is a singleton enumeration to represent the null value for the
  19. // `Value` type union.
  20. //
  21. // The JSON representation for `NullValue` is JSON `null`.
  22. type NullValue int32
  23. const (
  24. // Null value.
  25. NullValue_NULL_VALUE NullValue = 0
  26. )
  27. var NullValue_name = map[int32]string{
  28. 0: "NULL_VALUE",
  29. }
  30. var NullValue_value = map[string]int32{
  31. "NULL_VALUE": 0,
  32. }
  33. func (x NullValue) String() string {
  34. return proto.EnumName(NullValue_name, int32(x))
  35. }
  36. func (NullValue) EnumDescriptor() ([]byte, []int) {
  37. return fileDescriptor_df322afd6c9fb402, []int{0}
  38. }
  39. func (NullValue) XXX_WellKnownType() string { return "NullValue" }
  40. // `Struct` represents a structured data value, consisting of fields
  41. // which map to dynamically typed values. In some languages, `Struct`
  42. // might be supported by a native representation. For example, in
  43. // scripting languages like JS a struct is represented as an
  44. // object. The details of that representation are described together
  45. // with the proto support for the language.
  46. //
  47. // The JSON representation for `Struct` is JSON object.
  48. type Struct struct {
  49. // Unordered map of dynamically typed values.
  50. Fields map[string]*Value `protobuf:"bytes,1,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  51. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  52. XXX_unrecognized []byte `json:"-"`
  53. XXX_sizecache int32 `json:"-"`
  54. }
  55. func (m *Struct) Reset() { *m = Struct{} }
  56. func (m *Struct) String() string { return proto.CompactTextString(m) }
  57. func (*Struct) ProtoMessage() {}
  58. func (*Struct) Descriptor() ([]byte, []int) {
  59. return fileDescriptor_df322afd6c9fb402, []int{0}
  60. }
  61. func (*Struct) XXX_WellKnownType() string { return "Struct" }
  62. func (m *Struct) XXX_Unmarshal(b []byte) error {
  63. return xxx_messageInfo_Struct.Unmarshal(m, b)
  64. }
  65. func (m *Struct) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  66. return xxx_messageInfo_Struct.Marshal(b, m, deterministic)
  67. }
  68. func (m *Struct) XXX_Merge(src proto.Message) {
  69. xxx_messageInfo_Struct.Merge(m, src)
  70. }
  71. func (m *Struct) XXX_Size() int {
  72. return xxx_messageInfo_Struct.Size(m)
  73. }
  74. func (m *Struct) XXX_DiscardUnknown() {
  75. xxx_messageInfo_Struct.DiscardUnknown(m)
  76. }
  77. var xxx_messageInfo_Struct proto.InternalMessageInfo
  78. func (m *Struct) GetFields() map[string]*Value {
  79. if m != nil {
  80. return m.Fields
  81. }
  82. return nil
  83. }
  84. // `Value` represents a dynamically typed value which can be either
  85. // null, a number, a string, a boolean, a recursive struct value, or a
  86. // list of values. A producer of value is expected to set one of that
  87. // variants, absence of any variant indicates an error.
  88. //
  89. // The JSON representation for `Value` is JSON value.
  90. type Value struct {
  91. // The kind of value.
  92. //
  93. // Types that are valid to be assigned to Kind:
  94. // Represents a null value.
  95. // *Value_NullValue
  96. // Represents a double value.
  97. // *Value_NumberValue
  98. // Represents a string value.
  99. // *Value_StringValue
  100. // Represents a boolean value.
  101. // *Value_BoolValue
  102. // Represents a structured value.
  103. // *Value_StructValue
  104. // Represents a repeated `Value`.
  105. // *Value_ListValue
  106. Kind isValue_Kind `protobuf_oneof:"kind"`
  107. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  108. XXX_unrecognized []byte `json:"-"`
  109. XXX_sizecache int32 `json:"-"`
  110. }
  111. func (m *Value) Reset() { *m = Value{} }
  112. func (m *Value) String() string { return proto.CompactTextString(m) }
  113. func (*Value) ProtoMessage() {}
  114. func (*Value) Descriptor() ([]byte, []int) {
  115. return fileDescriptor_df322afd6c9fb402, []int{1}
  116. }
  117. func (*Value) XXX_WellKnownType() string { return "Value" }
  118. func (m *Value) XXX_Unmarshal(b []byte) error {
  119. return xxx_messageInfo_Value.Unmarshal(m, b)
  120. }
  121. func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  122. return xxx_messageInfo_Value.Marshal(b, m, deterministic)
  123. }
  124. func (m *Value) XXX_Merge(src proto.Message) {
  125. xxx_messageInfo_Value.Merge(m, src)
  126. }
  127. func (m *Value) XXX_Size() int {
  128. return xxx_messageInfo_Value.Size(m)
  129. }
  130. func (m *Value) XXX_DiscardUnknown() {
  131. xxx_messageInfo_Value.DiscardUnknown(m)
  132. }
  133. var xxx_messageInfo_Value proto.InternalMessageInfo
  134. type isValue_Kind interface {
  135. isValue_Kind()
  136. }
  137. type Value_NullValue struct {
  138. NullValue NullValue `protobuf:"varint,1,opt,name=null_value,json=nullValue,proto3,enum=google.protobuf.NullValue,oneof"`
  139. }
  140. type Value_NumberValue struct {
  141. NumberValue float64 `protobuf:"fixed64,2,opt,name=number_value,json=numberValue,proto3,oneof"`
  142. }
  143. type Value_StringValue struct {
  144. StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,proto3,oneof"`
  145. }
  146. type Value_BoolValue struct {
  147. BoolValue bool `protobuf:"varint,4,opt,name=bool_value,json=boolValue,proto3,oneof"`
  148. }
  149. type Value_StructValue struct {
  150. StructValue *Struct `protobuf:"bytes,5,opt,name=struct_value,json=structValue,proto3,oneof"`
  151. }
  152. type Value_ListValue struct {
  153. ListValue *ListValue `protobuf:"bytes,6,opt,name=list_value,json=listValue,proto3,oneof"`
  154. }
  155. func (*Value_NullValue) isValue_Kind() {}
  156. func (*Value_NumberValue) isValue_Kind() {}
  157. func (*Value_StringValue) isValue_Kind() {}
  158. func (*Value_BoolValue) isValue_Kind() {}
  159. func (*Value_StructValue) isValue_Kind() {}
  160. func (*Value_ListValue) isValue_Kind() {}
  161. func (m *Value) GetKind() isValue_Kind {
  162. if m != nil {
  163. return m.Kind
  164. }
  165. return nil
  166. }
  167. func (m *Value) GetNullValue() NullValue {
  168. if x, ok := m.GetKind().(*Value_NullValue); ok {
  169. return x.NullValue
  170. }
  171. return NullValue_NULL_VALUE
  172. }
  173. func (m *Value) GetNumberValue() float64 {
  174. if x, ok := m.GetKind().(*Value_NumberValue); ok {
  175. return x.NumberValue
  176. }
  177. return 0
  178. }
  179. func (m *Value) GetStringValue() string {
  180. if x, ok := m.GetKind().(*Value_StringValue); ok {
  181. return x.StringValue
  182. }
  183. return ""
  184. }
  185. func (m *Value) GetBoolValue() bool {
  186. if x, ok := m.GetKind().(*Value_BoolValue); ok {
  187. return x.BoolValue
  188. }
  189. return false
  190. }
  191. func (m *Value) GetStructValue() *Struct {
  192. if x, ok := m.GetKind().(*Value_StructValue); ok {
  193. return x.StructValue
  194. }
  195. return nil
  196. }
  197. func (m *Value) GetListValue() *ListValue {
  198. if x, ok := m.GetKind().(*Value_ListValue); ok {
  199. return x.ListValue
  200. }
  201. return nil
  202. }
  203. // XXX_OneofWrappers is for the internal use of the proto package.
  204. func (*Value) XXX_OneofWrappers() []interface{} {
  205. return []interface{}{
  206. (*Value_NullValue)(nil),
  207. (*Value_NumberValue)(nil),
  208. (*Value_StringValue)(nil),
  209. (*Value_BoolValue)(nil),
  210. (*Value_StructValue)(nil),
  211. (*Value_ListValue)(nil),
  212. }
  213. }
  214. // `ListValue` is a wrapper around a repeated field of values.
  215. //
  216. // The JSON representation for `ListValue` is JSON array.
  217. type ListValue struct {
  218. // Repeated field of dynamically typed values.
  219. Values []*Value `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
  220. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  221. XXX_unrecognized []byte `json:"-"`
  222. XXX_sizecache int32 `json:"-"`
  223. }
  224. func (m *ListValue) Reset() { *m = ListValue{} }
  225. func (m *ListValue) String() string { return proto.CompactTextString(m) }
  226. func (*ListValue) ProtoMessage() {}
  227. func (*ListValue) Descriptor() ([]byte, []int) {
  228. return fileDescriptor_df322afd6c9fb402, []int{2}
  229. }
  230. func (*ListValue) XXX_WellKnownType() string { return "ListValue" }
  231. func (m *ListValue) XXX_Unmarshal(b []byte) error {
  232. return xxx_messageInfo_ListValue.Unmarshal(m, b)
  233. }
  234. func (m *ListValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  235. return xxx_messageInfo_ListValue.Marshal(b, m, deterministic)
  236. }
  237. func (m *ListValue) XXX_Merge(src proto.Message) {
  238. xxx_messageInfo_ListValue.Merge(m, src)
  239. }
  240. func (m *ListValue) XXX_Size() int {
  241. return xxx_messageInfo_ListValue.Size(m)
  242. }
  243. func (m *ListValue) XXX_DiscardUnknown() {
  244. xxx_messageInfo_ListValue.DiscardUnknown(m)
  245. }
  246. var xxx_messageInfo_ListValue proto.InternalMessageInfo
  247. func (m *ListValue) GetValues() []*Value {
  248. if m != nil {
  249. return m.Values
  250. }
  251. return nil
  252. }
  253. func init() {
  254. proto.RegisterEnum("google.protobuf.NullValue", NullValue_name, NullValue_value)
  255. proto.RegisterType((*Struct)(nil), "google.protobuf.Struct")
  256. proto.RegisterMapType((map[string]*Value)(nil), "google.protobuf.Struct.FieldsEntry")
  257. proto.RegisterType((*Value)(nil), "google.protobuf.Value")
  258. proto.RegisterType((*ListValue)(nil), "google.protobuf.ListValue")
  259. }
  260. func init() { proto.RegisterFile("google/protobuf/struct.proto", fileDescriptor_df322afd6c9fb402) }
  261. var fileDescriptor_df322afd6c9fb402 = []byte{
  262. // 417 bytes of a gzipped FileDescriptorProto
  263. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x41, 0x8b, 0xd3, 0x40,
  264. 0x14, 0xc7, 0x3b, 0xc9, 0x36, 0x98, 0x17, 0x59, 0x97, 0x11, 0xb4, 0xac, 0xa2, 0xa1, 0x7b, 0x09,
  265. 0x22, 0x29, 0xd6, 0x8b, 0x18, 0x2f, 0x06, 0xd6, 0x5d, 0x30, 0x2c, 0x31, 0xba, 0x15, 0xbc, 0x94,
  266. 0x26, 0x4d, 0x63, 0xe8, 0x74, 0x26, 0x24, 0x33, 0x4a, 0x8f, 0x7e, 0x0b, 0xcf, 0x1e, 0x3d, 0xfa,
  267. 0xe9, 0x3c, 0xca, 0xcc, 0x24, 0xa9, 0xb4, 0xf4, 0x94, 0xbc, 0xf7, 0x7e, 0xef, 0x3f, 0xef, 0xff,
  268. 0x66, 0xe0, 0x71, 0xc1, 0x58, 0x41, 0xf2, 0x49, 0x55, 0x33, 0xce, 0x52, 0xb1, 0x9a, 0x34, 0xbc,
  269. 0x16, 0x19, 0xf7, 0x55, 0x8c, 0xef, 0xe9, 0xaa, 0xdf, 0x55, 0xc7, 0x3f, 0x11, 0x58, 0x1f, 0x15,
  270. 0x81, 0x03, 0xb0, 0x56, 0x65, 0x4e, 0x96, 0xcd, 0x08, 0xb9, 0xa6, 0xe7, 0x4c, 0x2f, 0xfc, 0x3d,
  271. 0xd8, 0xd7, 0xa0, 0xff, 0x4e, 0x51, 0x97, 0x94, 0xd7, 0xdb, 0xa4, 0x6d, 0x39, 0xff, 0x00, 0xce,
  272. 0x7f, 0x69, 0x7c, 0x06, 0xe6, 0x3a, 0xdf, 0x8e, 0x90, 0x8b, 0x3c, 0x3b, 0x91, 0xbf, 0xf8, 0x39,
  273. 0x0c, 0xbf, 0x2d, 0x88, 0xc8, 0x47, 0x86, 0x8b, 0x3c, 0x67, 0xfa, 0xe0, 0x40, 0x7c, 0x26, 0xab,
  274. 0x89, 0x86, 0x5e, 0x1b, 0xaf, 0xd0, 0xf8, 0x8f, 0x01, 0x43, 0x95, 0xc4, 0x01, 0x00, 0x15, 0x84,
  275. 0xcc, 0xb5, 0x80, 0x14, 0x3d, 0x9d, 0x9e, 0x1f, 0x08, 0xdc, 0x08, 0x42, 0x14, 0x7f, 0x3d, 0x48,
  276. 0x6c, 0xda, 0x05, 0xf8, 0x02, 0xee, 0x52, 0xb1, 0x49, 0xf3, 0x7a, 0xbe, 0x3b, 0x1f, 0x5d, 0x0f,
  277. 0x12, 0x47, 0x67, 0x7b, 0xa8, 0xe1, 0x75, 0x49, 0x8b, 0x16, 0x32, 0xe5, 0xe0, 0x12, 0xd2, 0x59,
  278. 0x0d, 0x3d, 0x05, 0x48, 0x19, 0xeb, 0xc6, 0x38, 0x71, 0x91, 0x77, 0x47, 0x1e, 0x25, 0x73, 0x1a,
  279. 0x78, 0xa3, 0x54, 0x44, 0xc6, 0x5b, 0x64, 0xa8, 0xac, 0x3e, 0x3c, 0xb2, 0xc7, 0x56, 0x5e, 0x64,
  280. 0xbc, 0x77, 0x49, 0xca, 0xa6, 0xeb, 0xb5, 0x54, 0xef, 0xa1, 0xcb, 0xa8, 0x6c, 0x78, 0xef, 0x92,
  281. 0x74, 0x41, 0x68, 0xc1, 0xc9, 0xba, 0xa4, 0xcb, 0x71, 0x00, 0x76, 0x4f, 0x60, 0x1f, 0x2c, 0x25,
  282. 0xd6, 0xdd, 0xe8, 0xb1, 0xa5, 0xb7, 0xd4, 0xb3, 0x47, 0x60, 0xf7, 0x4b, 0xc4, 0xa7, 0x00, 0x37,
  283. 0xb7, 0x51, 0x34, 0x9f, 0xbd, 0x8d, 0x6e, 0x2f, 0xcf, 0x06, 0xe1, 0x0f, 0x04, 0xf7, 0x33, 0xb6,
  284. 0xd9, 0x97, 0x08, 0x1d, 0xed, 0x26, 0x96, 0x71, 0x8c, 0xbe, 0xbc, 0x28, 0x4a, 0xfe, 0x55, 0xa4,
  285. 0x7e, 0xc6, 0x36, 0x93, 0x82, 0x91, 0x05, 0x2d, 0x76, 0x4f, 0xb1, 0xe2, 0xdb, 0x2a, 0x6f, 0xda,
  286. 0x17, 0x19, 0xe8, 0x4f, 0x95, 0xfe, 0x45, 0xe8, 0x97, 0x61, 0x5e, 0xc5, 0xe1, 0x6f, 0xe3, 0xc9,
  287. 0x95, 0x16, 0x8f, 0xbb, 0xf9, 0x3e, 0xe7, 0x84, 0xbc, 0xa7, 0xec, 0x3b, 0xfd, 0x24, 0x3b, 0x53,
  288. 0x4b, 0x49, 0xbd, 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0xe8, 0x1b, 0x59, 0xf8, 0xe5, 0x02, 0x00,
  289. 0x00,
  290. }