wrappers.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/wrappers.proto
  3. package wrappers // import "github.com/golang/protobuf/ptypes/wrappers"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. // Wrapper message for `double`.
  17. //
  18. // The JSON representation for `DoubleValue` is JSON number.
  19. type DoubleValue struct {
  20. // The double value.
  21. Value float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"`
  22. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  23. XXX_unrecognized []byte `json:"-"`
  24. XXX_sizecache int32 `json:"-"`
  25. }
  26. func (m *DoubleValue) Reset() { *m = DoubleValue{} }
  27. func (m *DoubleValue) String() string { return proto.CompactTextString(m) }
  28. func (*DoubleValue) ProtoMessage() {}
  29. func (*DoubleValue) Descriptor() ([]byte, []int) {
  30. return fileDescriptor_wrappers_16c7c35c009f3253, []int{0}
  31. }
  32. func (*DoubleValue) XXX_WellKnownType() string { return "DoubleValue" }
  33. func (m *DoubleValue) XXX_Unmarshal(b []byte) error {
  34. return xxx_messageInfo_DoubleValue.Unmarshal(m, b)
  35. }
  36. func (m *DoubleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  37. return xxx_messageInfo_DoubleValue.Marshal(b, m, deterministic)
  38. }
  39. func (dst *DoubleValue) XXX_Merge(src proto.Message) {
  40. xxx_messageInfo_DoubleValue.Merge(dst, src)
  41. }
  42. func (m *DoubleValue) XXX_Size() int {
  43. return xxx_messageInfo_DoubleValue.Size(m)
  44. }
  45. func (m *DoubleValue) XXX_DiscardUnknown() {
  46. xxx_messageInfo_DoubleValue.DiscardUnknown(m)
  47. }
  48. var xxx_messageInfo_DoubleValue proto.InternalMessageInfo
  49. func (m *DoubleValue) GetValue() float64 {
  50. if m != nil {
  51. return m.Value
  52. }
  53. return 0
  54. }
  55. // Wrapper message for `float`.
  56. //
  57. // The JSON representation for `FloatValue` is JSON number.
  58. type FloatValue struct {
  59. // The float value.
  60. Value float32 `protobuf:"fixed32,1,opt,name=value" json:"value,omitempty"`
  61. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  62. XXX_unrecognized []byte `json:"-"`
  63. XXX_sizecache int32 `json:"-"`
  64. }
  65. func (m *FloatValue) Reset() { *m = FloatValue{} }
  66. func (m *FloatValue) String() string { return proto.CompactTextString(m) }
  67. func (*FloatValue) ProtoMessage() {}
  68. func (*FloatValue) Descriptor() ([]byte, []int) {
  69. return fileDescriptor_wrappers_16c7c35c009f3253, []int{1}
  70. }
  71. func (*FloatValue) XXX_WellKnownType() string { return "FloatValue" }
  72. func (m *FloatValue) XXX_Unmarshal(b []byte) error {
  73. return xxx_messageInfo_FloatValue.Unmarshal(m, b)
  74. }
  75. func (m *FloatValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  76. return xxx_messageInfo_FloatValue.Marshal(b, m, deterministic)
  77. }
  78. func (dst *FloatValue) XXX_Merge(src proto.Message) {
  79. xxx_messageInfo_FloatValue.Merge(dst, src)
  80. }
  81. func (m *FloatValue) XXX_Size() int {
  82. return xxx_messageInfo_FloatValue.Size(m)
  83. }
  84. func (m *FloatValue) XXX_DiscardUnknown() {
  85. xxx_messageInfo_FloatValue.DiscardUnknown(m)
  86. }
  87. var xxx_messageInfo_FloatValue proto.InternalMessageInfo
  88. func (m *FloatValue) GetValue() float32 {
  89. if m != nil {
  90. return m.Value
  91. }
  92. return 0
  93. }
  94. // Wrapper message for `int64`.
  95. //
  96. // The JSON representation for `Int64Value` is JSON string.
  97. type Int64Value struct {
  98. // The int64 value.
  99. Value int64 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  100. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  101. XXX_unrecognized []byte `json:"-"`
  102. XXX_sizecache int32 `json:"-"`
  103. }
  104. func (m *Int64Value) Reset() { *m = Int64Value{} }
  105. func (m *Int64Value) String() string { return proto.CompactTextString(m) }
  106. func (*Int64Value) ProtoMessage() {}
  107. func (*Int64Value) Descriptor() ([]byte, []int) {
  108. return fileDescriptor_wrappers_16c7c35c009f3253, []int{2}
  109. }
  110. func (*Int64Value) XXX_WellKnownType() string { return "Int64Value" }
  111. func (m *Int64Value) XXX_Unmarshal(b []byte) error {
  112. return xxx_messageInfo_Int64Value.Unmarshal(m, b)
  113. }
  114. func (m *Int64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  115. return xxx_messageInfo_Int64Value.Marshal(b, m, deterministic)
  116. }
  117. func (dst *Int64Value) XXX_Merge(src proto.Message) {
  118. xxx_messageInfo_Int64Value.Merge(dst, src)
  119. }
  120. func (m *Int64Value) XXX_Size() int {
  121. return xxx_messageInfo_Int64Value.Size(m)
  122. }
  123. func (m *Int64Value) XXX_DiscardUnknown() {
  124. xxx_messageInfo_Int64Value.DiscardUnknown(m)
  125. }
  126. var xxx_messageInfo_Int64Value proto.InternalMessageInfo
  127. func (m *Int64Value) GetValue() int64 {
  128. if m != nil {
  129. return m.Value
  130. }
  131. return 0
  132. }
  133. // Wrapper message for `uint64`.
  134. //
  135. // The JSON representation for `UInt64Value` is JSON string.
  136. type UInt64Value struct {
  137. // The uint64 value.
  138. Value uint64 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  139. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  140. XXX_unrecognized []byte `json:"-"`
  141. XXX_sizecache int32 `json:"-"`
  142. }
  143. func (m *UInt64Value) Reset() { *m = UInt64Value{} }
  144. func (m *UInt64Value) String() string { return proto.CompactTextString(m) }
  145. func (*UInt64Value) ProtoMessage() {}
  146. func (*UInt64Value) Descriptor() ([]byte, []int) {
  147. return fileDescriptor_wrappers_16c7c35c009f3253, []int{3}
  148. }
  149. func (*UInt64Value) XXX_WellKnownType() string { return "UInt64Value" }
  150. func (m *UInt64Value) XXX_Unmarshal(b []byte) error {
  151. return xxx_messageInfo_UInt64Value.Unmarshal(m, b)
  152. }
  153. func (m *UInt64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  154. return xxx_messageInfo_UInt64Value.Marshal(b, m, deterministic)
  155. }
  156. func (dst *UInt64Value) XXX_Merge(src proto.Message) {
  157. xxx_messageInfo_UInt64Value.Merge(dst, src)
  158. }
  159. func (m *UInt64Value) XXX_Size() int {
  160. return xxx_messageInfo_UInt64Value.Size(m)
  161. }
  162. func (m *UInt64Value) XXX_DiscardUnknown() {
  163. xxx_messageInfo_UInt64Value.DiscardUnknown(m)
  164. }
  165. var xxx_messageInfo_UInt64Value proto.InternalMessageInfo
  166. func (m *UInt64Value) GetValue() uint64 {
  167. if m != nil {
  168. return m.Value
  169. }
  170. return 0
  171. }
  172. // Wrapper message for `int32`.
  173. //
  174. // The JSON representation for `Int32Value` is JSON number.
  175. type Int32Value struct {
  176. // The int32 value.
  177. Value int32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  178. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  179. XXX_unrecognized []byte `json:"-"`
  180. XXX_sizecache int32 `json:"-"`
  181. }
  182. func (m *Int32Value) Reset() { *m = Int32Value{} }
  183. func (m *Int32Value) String() string { return proto.CompactTextString(m) }
  184. func (*Int32Value) ProtoMessage() {}
  185. func (*Int32Value) Descriptor() ([]byte, []int) {
  186. return fileDescriptor_wrappers_16c7c35c009f3253, []int{4}
  187. }
  188. func (*Int32Value) XXX_WellKnownType() string { return "Int32Value" }
  189. func (m *Int32Value) XXX_Unmarshal(b []byte) error {
  190. return xxx_messageInfo_Int32Value.Unmarshal(m, b)
  191. }
  192. func (m *Int32Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  193. return xxx_messageInfo_Int32Value.Marshal(b, m, deterministic)
  194. }
  195. func (dst *Int32Value) XXX_Merge(src proto.Message) {
  196. xxx_messageInfo_Int32Value.Merge(dst, src)
  197. }
  198. func (m *Int32Value) XXX_Size() int {
  199. return xxx_messageInfo_Int32Value.Size(m)
  200. }
  201. func (m *Int32Value) XXX_DiscardUnknown() {
  202. xxx_messageInfo_Int32Value.DiscardUnknown(m)
  203. }
  204. var xxx_messageInfo_Int32Value proto.InternalMessageInfo
  205. func (m *Int32Value) GetValue() int32 {
  206. if m != nil {
  207. return m.Value
  208. }
  209. return 0
  210. }
  211. // Wrapper message for `uint32`.
  212. //
  213. // The JSON representation for `UInt32Value` is JSON number.
  214. type UInt32Value struct {
  215. // The uint32 value.
  216. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  217. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  218. XXX_unrecognized []byte `json:"-"`
  219. XXX_sizecache int32 `json:"-"`
  220. }
  221. func (m *UInt32Value) Reset() { *m = UInt32Value{} }
  222. func (m *UInt32Value) String() string { return proto.CompactTextString(m) }
  223. func (*UInt32Value) ProtoMessage() {}
  224. func (*UInt32Value) Descriptor() ([]byte, []int) {
  225. return fileDescriptor_wrappers_16c7c35c009f3253, []int{5}
  226. }
  227. func (*UInt32Value) XXX_WellKnownType() string { return "UInt32Value" }
  228. func (m *UInt32Value) XXX_Unmarshal(b []byte) error {
  229. return xxx_messageInfo_UInt32Value.Unmarshal(m, b)
  230. }
  231. func (m *UInt32Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  232. return xxx_messageInfo_UInt32Value.Marshal(b, m, deterministic)
  233. }
  234. func (dst *UInt32Value) XXX_Merge(src proto.Message) {
  235. xxx_messageInfo_UInt32Value.Merge(dst, src)
  236. }
  237. func (m *UInt32Value) XXX_Size() int {
  238. return xxx_messageInfo_UInt32Value.Size(m)
  239. }
  240. func (m *UInt32Value) XXX_DiscardUnknown() {
  241. xxx_messageInfo_UInt32Value.DiscardUnknown(m)
  242. }
  243. var xxx_messageInfo_UInt32Value proto.InternalMessageInfo
  244. func (m *UInt32Value) GetValue() uint32 {
  245. if m != nil {
  246. return m.Value
  247. }
  248. return 0
  249. }
  250. // Wrapper message for `bool`.
  251. //
  252. // The JSON representation for `BoolValue` is JSON `true` and `false`.
  253. type BoolValue struct {
  254. // The bool value.
  255. Value bool `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  256. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  257. XXX_unrecognized []byte `json:"-"`
  258. XXX_sizecache int32 `json:"-"`
  259. }
  260. func (m *BoolValue) Reset() { *m = BoolValue{} }
  261. func (m *BoolValue) String() string { return proto.CompactTextString(m) }
  262. func (*BoolValue) ProtoMessage() {}
  263. func (*BoolValue) Descriptor() ([]byte, []int) {
  264. return fileDescriptor_wrappers_16c7c35c009f3253, []int{6}
  265. }
  266. func (*BoolValue) XXX_WellKnownType() string { return "BoolValue" }
  267. func (m *BoolValue) XXX_Unmarshal(b []byte) error {
  268. return xxx_messageInfo_BoolValue.Unmarshal(m, b)
  269. }
  270. func (m *BoolValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  271. return xxx_messageInfo_BoolValue.Marshal(b, m, deterministic)
  272. }
  273. func (dst *BoolValue) XXX_Merge(src proto.Message) {
  274. xxx_messageInfo_BoolValue.Merge(dst, src)
  275. }
  276. func (m *BoolValue) XXX_Size() int {
  277. return xxx_messageInfo_BoolValue.Size(m)
  278. }
  279. func (m *BoolValue) XXX_DiscardUnknown() {
  280. xxx_messageInfo_BoolValue.DiscardUnknown(m)
  281. }
  282. var xxx_messageInfo_BoolValue proto.InternalMessageInfo
  283. func (m *BoolValue) GetValue() bool {
  284. if m != nil {
  285. return m.Value
  286. }
  287. return false
  288. }
  289. // Wrapper message for `string`.
  290. //
  291. // The JSON representation for `StringValue` is JSON string.
  292. type StringValue struct {
  293. // The string value.
  294. Value string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
  295. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  296. XXX_unrecognized []byte `json:"-"`
  297. XXX_sizecache int32 `json:"-"`
  298. }
  299. func (m *StringValue) Reset() { *m = StringValue{} }
  300. func (m *StringValue) String() string { return proto.CompactTextString(m) }
  301. func (*StringValue) ProtoMessage() {}
  302. func (*StringValue) Descriptor() ([]byte, []int) {
  303. return fileDescriptor_wrappers_16c7c35c009f3253, []int{7}
  304. }
  305. func (*StringValue) XXX_WellKnownType() string { return "StringValue" }
  306. func (m *StringValue) XXX_Unmarshal(b []byte) error {
  307. return xxx_messageInfo_StringValue.Unmarshal(m, b)
  308. }
  309. func (m *StringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  310. return xxx_messageInfo_StringValue.Marshal(b, m, deterministic)
  311. }
  312. func (dst *StringValue) XXX_Merge(src proto.Message) {
  313. xxx_messageInfo_StringValue.Merge(dst, src)
  314. }
  315. func (m *StringValue) XXX_Size() int {
  316. return xxx_messageInfo_StringValue.Size(m)
  317. }
  318. func (m *StringValue) XXX_DiscardUnknown() {
  319. xxx_messageInfo_StringValue.DiscardUnknown(m)
  320. }
  321. var xxx_messageInfo_StringValue proto.InternalMessageInfo
  322. func (m *StringValue) GetValue() string {
  323. if m != nil {
  324. return m.Value
  325. }
  326. return ""
  327. }
  328. // Wrapper message for `bytes`.
  329. //
  330. // The JSON representation for `BytesValue` is JSON string.
  331. type BytesValue struct {
  332. // The bytes value.
  333. Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  334. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  335. XXX_unrecognized []byte `json:"-"`
  336. XXX_sizecache int32 `json:"-"`
  337. }
  338. func (m *BytesValue) Reset() { *m = BytesValue{} }
  339. func (m *BytesValue) String() string { return proto.CompactTextString(m) }
  340. func (*BytesValue) ProtoMessage() {}
  341. func (*BytesValue) Descriptor() ([]byte, []int) {
  342. return fileDescriptor_wrappers_16c7c35c009f3253, []int{8}
  343. }
  344. func (*BytesValue) XXX_WellKnownType() string { return "BytesValue" }
  345. func (m *BytesValue) XXX_Unmarshal(b []byte) error {
  346. return xxx_messageInfo_BytesValue.Unmarshal(m, b)
  347. }
  348. func (m *BytesValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  349. return xxx_messageInfo_BytesValue.Marshal(b, m, deterministic)
  350. }
  351. func (dst *BytesValue) XXX_Merge(src proto.Message) {
  352. xxx_messageInfo_BytesValue.Merge(dst, src)
  353. }
  354. func (m *BytesValue) XXX_Size() int {
  355. return xxx_messageInfo_BytesValue.Size(m)
  356. }
  357. func (m *BytesValue) XXX_DiscardUnknown() {
  358. xxx_messageInfo_BytesValue.DiscardUnknown(m)
  359. }
  360. var xxx_messageInfo_BytesValue proto.InternalMessageInfo
  361. func (m *BytesValue) GetValue() []byte {
  362. if m != nil {
  363. return m.Value
  364. }
  365. return nil
  366. }
  367. func init() {
  368. proto.RegisterType((*DoubleValue)(nil), "google.protobuf.DoubleValue")
  369. proto.RegisterType((*FloatValue)(nil), "google.protobuf.FloatValue")
  370. proto.RegisterType((*Int64Value)(nil), "google.protobuf.Int64Value")
  371. proto.RegisterType((*UInt64Value)(nil), "google.protobuf.UInt64Value")
  372. proto.RegisterType((*Int32Value)(nil), "google.protobuf.Int32Value")
  373. proto.RegisterType((*UInt32Value)(nil), "google.protobuf.UInt32Value")
  374. proto.RegisterType((*BoolValue)(nil), "google.protobuf.BoolValue")
  375. proto.RegisterType((*StringValue)(nil), "google.protobuf.StringValue")
  376. proto.RegisterType((*BytesValue)(nil), "google.protobuf.BytesValue")
  377. }
  378. func init() {
  379. proto.RegisterFile("google/protobuf/wrappers.proto", fileDescriptor_wrappers_16c7c35c009f3253)
  380. }
  381. var fileDescriptor_wrappers_16c7c35c009f3253 = []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. }