wrappers.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/wrappers.proto
  3. package wrappers
  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. // Wrapper message for `double`.
  19. //
  20. // The JSON representation for `DoubleValue` is JSON number.
  21. type DoubleValue struct {
  22. // The double value.
  23. Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
  24. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  25. XXX_unrecognized []byte `json:"-"`
  26. XXX_sizecache int32 `json:"-"`
  27. }
  28. func (m *DoubleValue) Reset() { *m = DoubleValue{} }
  29. func (m *DoubleValue) String() string { return proto.CompactTextString(m) }
  30. func (*DoubleValue) ProtoMessage() {}
  31. func (*DoubleValue) Descriptor() ([]byte, []int) {
  32. return fileDescriptor_5377b62bda767935, []int{0}
  33. }
  34. func (*DoubleValue) XXX_WellKnownType() string { return "DoubleValue" }
  35. func (m *DoubleValue) XXX_Unmarshal(b []byte) error {
  36. return xxx_messageInfo_DoubleValue.Unmarshal(m, b)
  37. }
  38. func (m *DoubleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  39. return xxx_messageInfo_DoubleValue.Marshal(b, m, deterministic)
  40. }
  41. func (m *DoubleValue) XXX_Merge(src proto.Message) {
  42. xxx_messageInfo_DoubleValue.Merge(m, src)
  43. }
  44. func (m *DoubleValue) XXX_Size() int {
  45. return xxx_messageInfo_DoubleValue.Size(m)
  46. }
  47. func (m *DoubleValue) XXX_DiscardUnknown() {
  48. xxx_messageInfo_DoubleValue.DiscardUnknown(m)
  49. }
  50. var xxx_messageInfo_DoubleValue proto.InternalMessageInfo
  51. func (m *DoubleValue) GetValue() float64 {
  52. if m != nil {
  53. return m.Value
  54. }
  55. return 0
  56. }
  57. // Wrapper message for `float`.
  58. //
  59. // The JSON representation for `FloatValue` is JSON number.
  60. type FloatValue struct {
  61. // The float value.
  62. Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
  63. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  64. XXX_unrecognized []byte `json:"-"`
  65. XXX_sizecache int32 `json:"-"`
  66. }
  67. func (m *FloatValue) Reset() { *m = FloatValue{} }
  68. func (m *FloatValue) String() string { return proto.CompactTextString(m) }
  69. func (*FloatValue) ProtoMessage() {}
  70. func (*FloatValue) Descriptor() ([]byte, []int) {
  71. return fileDescriptor_5377b62bda767935, []int{1}
  72. }
  73. func (*FloatValue) XXX_WellKnownType() string { return "FloatValue" }
  74. func (m *FloatValue) XXX_Unmarshal(b []byte) error {
  75. return xxx_messageInfo_FloatValue.Unmarshal(m, b)
  76. }
  77. func (m *FloatValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  78. return xxx_messageInfo_FloatValue.Marshal(b, m, deterministic)
  79. }
  80. func (m *FloatValue) XXX_Merge(src proto.Message) {
  81. xxx_messageInfo_FloatValue.Merge(m, src)
  82. }
  83. func (m *FloatValue) XXX_Size() int {
  84. return xxx_messageInfo_FloatValue.Size(m)
  85. }
  86. func (m *FloatValue) XXX_DiscardUnknown() {
  87. xxx_messageInfo_FloatValue.DiscardUnknown(m)
  88. }
  89. var xxx_messageInfo_FloatValue proto.InternalMessageInfo
  90. func (m *FloatValue) GetValue() float32 {
  91. if m != nil {
  92. return m.Value
  93. }
  94. return 0
  95. }
  96. // Wrapper message for `int64`.
  97. //
  98. // The JSON representation for `Int64Value` is JSON string.
  99. type Int64Value struct {
  100. // The int64 value.
  101. Value int64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  102. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  103. XXX_unrecognized []byte `json:"-"`
  104. XXX_sizecache int32 `json:"-"`
  105. }
  106. func (m *Int64Value) Reset() { *m = Int64Value{} }
  107. func (m *Int64Value) String() string { return proto.CompactTextString(m) }
  108. func (*Int64Value) ProtoMessage() {}
  109. func (*Int64Value) Descriptor() ([]byte, []int) {
  110. return fileDescriptor_5377b62bda767935, []int{2}
  111. }
  112. func (*Int64Value) XXX_WellKnownType() string { return "Int64Value" }
  113. func (m *Int64Value) XXX_Unmarshal(b []byte) error {
  114. return xxx_messageInfo_Int64Value.Unmarshal(m, b)
  115. }
  116. func (m *Int64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  117. return xxx_messageInfo_Int64Value.Marshal(b, m, deterministic)
  118. }
  119. func (m *Int64Value) XXX_Merge(src proto.Message) {
  120. xxx_messageInfo_Int64Value.Merge(m, src)
  121. }
  122. func (m *Int64Value) XXX_Size() int {
  123. return xxx_messageInfo_Int64Value.Size(m)
  124. }
  125. func (m *Int64Value) XXX_DiscardUnknown() {
  126. xxx_messageInfo_Int64Value.DiscardUnknown(m)
  127. }
  128. var xxx_messageInfo_Int64Value proto.InternalMessageInfo
  129. func (m *Int64Value) GetValue() int64 {
  130. if m != nil {
  131. return m.Value
  132. }
  133. return 0
  134. }
  135. // Wrapper message for `uint64`.
  136. //
  137. // The JSON representation for `UInt64Value` is JSON string.
  138. type UInt64Value struct {
  139. // The uint64 value.
  140. Value uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  141. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  142. XXX_unrecognized []byte `json:"-"`
  143. XXX_sizecache int32 `json:"-"`
  144. }
  145. func (m *UInt64Value) Reset() { *m = UInt64Value{} }
  146. func (m *UInt64Value) String() string { return proto.CompactTextString(m) }
  147. func (*UInt64Value) ProtoMessage() {}
  148. func (*UInt64Value) Descriptor() ([]byte, []int) {
  149. return fileDescriptor_5377b62bda767935, []int{3}
  150. }
  151. func (*UInt64Value) XXX_WellKnownType() string { return "UInt64Value" }
  152. func (m *UInt64Value) XXX_Unmarshal(b []byte) error {
  153. return xxx_messageInfo_UInt64Value.Unmarshal(m, b)
  154. }
  155. func (m *UInt64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  156. return xxx_messageInfo_UInt64Value.Marshal(b, m, deterministic)
  157. }
  158. func (m *UInt64Value) XXX_Merge(src proto.Message) {
  159. xxx_messageInfo_UInt64Value.Merge(m, src)
  160. }
  161. func (m *UInt64Value) XXX_Size() int {
  162. return xxx_messageInfo_UInt64Value.Size(m)
  163. }
  164. func (m *UInt64Value) XXX_DiscardUnknown() {
  165. xxx_messageInfo_UInt64Value.DiscardUnknown(m)
  166. }
  167. var xxx_messageInfo_UInt64Value proto.InternalMessageInfo
  168. func (m *UInt64Value) GetValue() uint64 {
  169. if m != nil {
  170. return m.Value
  171. }
  172. return 0
  173. }
  174. // Wrapper message for `int32`.
  175. //
  176. // The JSON representation for `Int32Value` is JSON number.
  177. type Int32Value struct {
  178. // The int32 value.
  179. Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  180. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  181. XXX_unrecognized []byte `json:"-"`
  182. XXX_sizecache int32 `json:"-"`
  183. }
  184. func (m *Int32Value) Reset() { *m = Int32Value{} }
  185. func (m *Int32Value) String() string { return proto.CompactTextString(m) }
  186. func (*Int32Value) ProtoMessage() {}
  187. func (*Int32Value) Descriptor() ([]byte, []int) {
  188. return fileDescriptor_5377b62bda767935, []int{4}
  189. }
  190. func (*Int32Value) XXX_WellKnownType() string { return "Int32Value" }
  191. func (m *Int32Value) XXX_Unmarshal(b []byte) error {
  192. return xxx_messageInfo_Int32Value.Unmarshal(m, b)
  193. }
  194. func (m *Int32Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  195. return xxx_messageInfo_Int32Value.Marshal(b, m, deterministic)
  196. }
  197. func (m *Int32Value) XXX_Merge(src proto.Message) {
  198. xxx_messageInfo_Int32Value.Merge(m, src)
  199. }
  200. func (m *Int32Value) XXX_Size() int {
  201. return xxx_messageInfo_Int32Value.Size(m)
  202. }
  203. func (m *Int32Value) XXX_DiscardUnknown() {
  204. xxx_messageInfo_Int32Value.DiscardUnknown(m)
  205. }
  206. var xxx_messageInfo_Int32Value proto.InternalMessageInfo
  207. func (m *Int32Value) GetValue() int32 {
  208. if m != nil {
  209. return m.Value
  210. }
  211. return 0
  212. }
  213. // Wrapper message for `uint32`.
  214. //
  215. // The JSON representation for `UInt32Value` is JSON number.
  216. type UInt32Value struct {
  217. // The uint32 value.
  218. Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  219. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  220. XXX_unrecognized []byte `json:"-"`
  221. XXX_sizecache int32 `json:"-"`
  222. }
  223. func (m *UInt32Value) Reset() { *m = UInt32Value{} }
  224. func (m *UInt32Value) String() string { return proto.CompactTextString(m) }
  225. func (*UInt32Value) ProtoMessage() {}
  226. func (*UInt32Value) Descriptor() ([]byte, []int) {
  227. return fileDescriptor_5377b62bda767935, []int{5}
  228. }
  229. func (*UInt32Value) XXX_WellKnownType() string { return "UInt32Value" }
  230. func (m *UInt32Value) XXX_Unmarshal(b []byte) error {
  231. return xxx_messageInfo_UInt32Value.Unmarshal(m, b)
  232. }
  233. func (m *UInt32Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  234. return xxx_messageInfo_UInt32Value.Marshal(b, m, deterministic)
  235. }
  236. func (m *UInt32Value) XXX_Merge(src proto.Message) {
  237. xxx_messageInfo_UInt32Value.Merge(m, src)
  238. }
  239. func (m *UInt32Value) XXX_Size() int {
  240. return xxx_messageInfo_UInt32Value.Size(m)
  241. }
  242. func (m *UInt32Value) XXX_DiscardUnknown() {
  243. xxx_messageInfo_UInt32Value.DiscardUnknown(m)
  244. }
  245. var xxx_messageInfo_UInt32Value proto.InternalMessageInfo
  246. func (m *UInt32Value) GetValue() uint32 {
  247. if m != nil {
  248. return m.Value
  249. }
  250. return 0
  251. }
  252. // Wrapper message for `bool`.
  253. //
  254. // The JSON representation for `BoolValue` is JSON `true` and `false`.
  255. type BoolValue struct {
  256. // The bool value.
  257. Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  258. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  259. XXX_unrecognized []byte `json:"-"`
  260. XXX_sizecache int32 `json:"-"`
  261. }
  262. func (m *BoolValue) Reset() { *m = BoolValue{} }
  263. func (m *BoolValue) String() string { return proto.CompactTextString(m) }
  264. func (*BoolValue) ProtoMessage() {}
  265. func (*BoolValue) Descriptor() ([]byte, []int) {
  266. return fileDescriptor_5377b62bda767935, []int{6}
  267. }
  268. func (*BoolValue) XXX_WellKnownType() string { return "BoolValue" }
  269. func (m *BoolValue) XXX_Unmarshal(b []byte) error {
  270. return xxx_messageInfo_BoolValue.Unmarshal(m, b)
  271. }
  272. func (m *BoolValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  273. return xxx_messageInfo_BoolValue.Marshal(b, m, deterministic)
  274. }
  275. func (m *BoolValue) XXX_Merge(src proto.Message) {
  276. xxx_messageInfo_BoolValue.Merge(m, src)
  277. }
  278. func (m *BoolValue) XXX_Size() int {
  279. return xxx_messageInfo_BoolValue.Size(m)
  280. }
  281. func (m *BoolValue) XXX_DiscardUnknown() {
  282. xxx_messageInfo_BoolValue.DiscardUnknown(m)
  283. }
  284. var xxx_messageInfo_BoolValue proto.InternalMessageInfo
  285. func (m *BoolValue) GetValue() bool {
  286. if m != nil {
  287. return m.Value
  288. }
  289. return false
  290. }
  291. // Wrapper message for `string`.
  292. //
  293. // The JSON representation for `StringValue` is JSON string.
  294. type StringValue struct {
  295. // The string value.
  296. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  297. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  298. XXX_unrecognized []byte `json:"-"`
  299. XXX_sizecache int32 `json:"-"`
  300. }
  301. func (m *StringValue) Reset() { *m = StringValue{} }
  302. func (m *StringValue) String() string { return proto.CompactTextString(m) }
  303. func (*StringValue) ProtoMessage() {}
  304. func (*StringValue) Descriptor() ([]byte, []int) {
  305. return fileDescriptor_5377b62bda767935, []int{7}
  306. }
  307. func (*StringValue) XXX_WellKnownType() string { return "StringValue" }
  308. func (m *StringValue) XXX_Unmarshal(b []byte) error {
  309. return xxx_messageInfo_StringValue.Unmarshal(m, b)
  310. }
  311. func (m *StringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  312. return xxx_messageInfo_StringValue.Marshal(b, m, deterministic)
  313. }
  314. func (m *StringValue) XXX_Merge(src proto.Message) {
  315. xxx_messageInfo_StringValue.Merge(m, src)
  316. }
  317. func (m *StringValue) XXX_Size() int {
  318. return xxx_messageInfo_StringValue.Size(m)
  319. }
  320. func (m *StringValue) XXX_DiscardUnknown() {
  321. xxx_messageInfo_StringValue.DiscardUnknown(m)
  322. }
  323. var xxx_messageInfo_StringValue proto.InternalMessageInfo
  324. func (m *StringValue) GetValue() string {
  325. if m != nil {
  326. return m.Value
  327. }
  328. return ""
  329. }
  330. // Wrapper message for `bytes`.
  331. //
  332. // The JSON representation for `BytesValue` is JSON string.
  333. type BytesValue struct {
  334. // The bytes value.
  335. Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  336. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  337. XXX_unrecognized []byte `json:"-"`
  338. XXX_sizecache int32 `json:"-"`
  339. }
  340. func (m *BytesValue) Reset() { *m = BytesValue{} }
  341. func (m *BytesValue) String() string { return proto.CompactTextString(m) }
  342. func (*BytesValue) ProtoMessage() {}
  343. func (*BytesValue) Descriptor() ([]byte, []int) {
  344. return fileDescriptor_5377b62bda767935, []int{8}
  345. }
  346. func (*BytesValue) XXX_WellKnownType() string { return "BytesValue" }
  347. func (m *BytesValue) XXX_Unmarshal(b []byte) error {
  348. return xxx_messageInfo_BytesValue.Unmarshal(m, b)
  349. }
  350. func (m *BytesValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  351. return xxx_messageInfo_BytesValue.Marshal(b, m, deterministic)
  352. }
  353. func (m *BytesValue) XXX_Merge(src proto.Message) {
  354. xxx_messageInfo_BytesValue.Merge(m, src)
  355. }
  356. func (m *BytesValue) XXX_Size() int {
  357. return xxx_messageInfo_BytesValue.Size(m)
  358. }
  359. func (m *BytesValue) XXX_DiscardUnknown() {
  360. xxx_messageInfo_BytesValue.DiscardUnknown(m)
  361. }
  362. var xxx_messageInfo_BytesValue proto.InternalMessageInfo
  363. func (m *BytesValue) GetValue() []byte {
  364. if m != nil {
  365. return m.Value
  366. }
  367. return nil
  368. }
  369. func init() {
  370. proto.RegisterType((*DoubleValue)(nil), "google.protobuf.DoubleValue")
  371. proto.RegisterType((*FloatValue)(nil), "google.protobuf.FloatValue")
  372. proto.RegisterType((*Int64Value)(nil), "google.protobuf.Int64Value")
  373. proto.RegisterType((*UInt64Value)(nil), "google.protobuf.UInt64Value")
  374. proto.RegisterType((*Int32Value)(nil), "google.protobuf.Int32Value")
  375. proto.RegisterType((*UInt32Value)(nil), "google.protobuf.UInt32Value")
  376. proto.RegisterType((*BoolValue)(nil), "google.protobuf.BoolValue")
  377. proto.RegisterType((*StringValue)(nil), "google.protobuf.StringValue")
  378. proto.RegisterType((*BytesValue)(nil), "google.protobuf.BytesValue")
  379. }
  380. func init() { proto.RegisterFile("google/protobuf/wrappers.proto", fileDescriptor_5377b62bda767935) }
  381. var fileDescriptor_5377b62bda767935 = []byte{
  382. // 259 bytes of a gzipped FileDescriptorProto
  383. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcf, 0xcf, 0x4f,
  384. 0xcf, 0x49, 0xd5, 0x2f, 0x28, 0xca, 0x2f, 0xc9, 0x4f, 0x2a, 0x4d, 0xd3, 0x2f, 0x2f, 0x4a, 0x2c,
  385. 0x28, 0x48, 0x2d, 0x2a, 0xd6, 0x03, 0x8b, 0x08, 0xf1, 0x43, 0xe4, 0xf5, 0x60, 0xf2, 0x4a, 0xca,
  386. 0x5c, 0xdc, 0x2e, 0xf9, 0xa5, 0x49, 0x39, 0xa9, 0x61, 0x89, 0x39, 0xa5, 0xa9, 0x42, 0x22, 0x5c,
  387. 0xac, 0x65, 0x20, 0x86, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x63, 0x10, 0x84, 0xa3, 0xa4, 0xc4, 0xc5,
  388. 0xe5, 0x96, 0x93, 0x9f, 0x58, 0x82, 0x45, 0x0d, 0x13, 0x92, 0x1a, 0xcf, 0xbc, 0x12, 0x33, 0x13,
  389. 0x2c, 0x6a, 0x98, 0x61, 0x6a, 0x94, 0xb9, 0xb8, 0x43, 0x71, 0x29, 0x62, 0x41, 0x35, 0xc8, 0xd8,
  390. 0x08, 0x8b, 0x1a, 0x56, 0x34, 0x83, 0xb0, 0x2a, 0xe2, 0x85, 0x29, 0x52, 0xe4, 0xe2, 0x74, 0xca,
  391. 0xcf, 0xcf, 0xc1, 0xa2, 0x84, 0x03, 0xc9, 0x9c, 0xe0, 0x92, 0xa2, 0xcc, 0xbc, 0x74, 0x2c, 0x8a,
  392. 0x38, 0x91, 0x1c, 0xe4, 0x54, 0x59, 0x92, 0x5a, 0x8c, 0x45, 0x0d, 0x0f, 0x54, 0x8d, 0x53, 0x0d,
  393. 0x97, 0x70, 0x72, 0x7e, 0xae, 0x1e, 0x5a, 0xe8, 0x3a, 0xf1, 0x86, 0x43, 0x83, 0x3f, 0x00, 0x24,
  394. 0x12, 0xc0, 0x18, 0xa5, 0x95, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f,
  395. 0x9e, 0x9f, 0x93, 0x98, 0x97, 0x8e, 0x88, 0xaa, 0x82, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x78, 0x8c,
  396. 0xfd, 0x60, 0x64, 0x5c, 0xc4, 0xc4, 0xec, 0x1e, 0xe0, 0xb4, 0x8a, 0x49, 0xce, 0x1d, 0x62, 0x6e,
  397. 0x00, 0x54, 0xa9, 0x5e, 0x78, 0x6a, 0x4e, 0x8e, 0x77, 0x5e, 0x7e, 0x79, 0x5e, 0x08, 0x48, 0x4b,
  398. 0x12, 0x1b, 0xd8, 0x0c, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x19, 0x6c, 0xb9, 0xb8, 0xfe,
  399. 0x01, 0x00, 0x00,
  400. }