Wrappers.pbobjc.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: google/protobuf/wrappers.proto
  3. #import "GPBProtocolBuffers.h"
  4. #if GOOGLE_PROTOBUF_OBJC_GEN_VERSION != 30000
  5. #error This file was generated by a different version of protoc which is incompatible with your Protocol Buffer library sources.
  6. #endif
  7. // @@protoc_insertion_point(imports)
  8. CF_EXTERN_C_BEGIN
  9. NS_ASSUME_NONNULL_BEGIN
  10. #pragma mark - GPBWrappersRoot
  11. @interface GPBWrappersRoot : GPBRootObject
  12. // The base class provides:
  13. // + (GPBExtensionRegistry *)extensionRegistry;
  14. // which is an GPBExtensionRegistry that includes all the extensions defined by
  15. // this file and all files that it depends on.
  16. @end
  17. #pragma mark - GPBDoubleValue
  18. typedef GPB_ENUM(GPBDoubleValue_FieldNumber) {
  19. GPBDoubleValue_FieldNumber_Value = 1,
  20. };
  21. // Wrapper message for `double`.
  22. //
  23. // The JSON representation for `DoubleValue` is JSON number.
  24. @interface GPBDoubleValue : GPBMessage
  25. // The double value.
  26. @property(nonatomic, readwrite) double value;
  27. @end
  28. #pragma mark - GPBFloatValue
  29. typedef GPB_ENUM(GPBFloatValue_FieldNumber) {
  30. GPBFloatValue_FieldNumber_Value = 1,
  31. };
  32. // Wrapper message for `float`.
  33. //
  34. // The JSON representation for `FloatValue` is JSON number.
  35. @interface GPBFloatValue : GPBMessage
  36. // The float value.
  37. @property(nonatomic, readwrite) float value;
  38. @end
  39. #pragma mark - GPBInt64Value
  40. typedef GPB_ENUM(GPBInt64Value_FieldNumber) {
  41. GPBInt64Value_FieldNumber_Value = 1,
  42. };
  43. // Wrapper message for `int64`.
  44. //
  45. // The JSON representation for `Int64Value` is JSON string.
  46. @interface GPBInt64Value : GPBMessage
  47. // The int64 value.
  48. @property(nonatomic, readwrite) int64_t value;
  49. @end
  50. #pragma mark - GPBUInt64Value
  51. typedef GPB_ENUM(GPBUInt64Value_FieldNumber) {
  52. GPBUInt64Value_FieldNumber_Value = 1,
  53. };
  54. // Wrapper message for `uint64`.
  55. //
  56. // The JSON representation for `UInt64Value` is JSON string.
  57. @interface GPBUInt64Value : GPBMessage
  58. // The uint64 value.
  59. @property(nonatomic, readwrite) uint64_t value;
  60. @end
  61. #pragma mark - GPBInt32Value
  62. typedef GPB_ENUM(GPBInt32Value_FieldNumber) {
  63. GPBInt32Value_FieldNumber_Value = 1,
  64. };
  65. // Wrapper message for `int32`.
  66. //
  67. // The JSON representation for `Int32Value` is JSON number.
  68. @interface GPBInt32Value : GPBMessage
  69. // The int32 value.
  70. @property(nonatomic, readwrite) int32_t value;
  71. @end
  72. #pragma mark - GPBUInt32Value
  73. typedef GPB_ENUM(GPBUInt32Value_FieldNumber) {
  74. GPBUInt32Value_FieldNumber_Value = 1,
  75. };
  76. // Wrapper message for `uint32`.
  77. //
  78. // The JSON representation for `UInt32Value` is JSON number.
  79. @interface GPBUInt32Value : GPBMessage
  80. // The uint32 value.
  81. @property(nonatomic, readwrite) uint32_t value;
  82. @end
  83. #pragma mark - GPBBoolValue
  84. typedef GPB_ENUM(GPBBoolValue_FieldNumber) {
  85. GPBBoolValue_FieldNumber_Value = 1,
  86. };
  87. // Wrapper message for `bool`.
  88. //
  89. // The JSON representation for `BoolValue` is JSON `true` and `false`.
  90. @interface GPBBoolValue : GPBMessage
  91. // The bool value.
  92. @property(nonatomic, readwrite) BOOL value;
  93. @end
  94. #pragma mark - GPBStringValue
  95. typedef GPB_ENUM(GPBStringValue_FieldNumber) {
  96. GPBStringValue_FieldNumber_Value = 1,
  97. };
  98. // Wrapper message for `string`.
  99. //
  100. // The JSON representation for `StringValue` is JSON string.
  101. @interface GPBStringValue : GPBMessage
  102. // The string value.
  103. @property(nonatomic, readwrite, copy, null_resettable) NSString *value;
  104. @end
  105. #pragma mark - GPBBytesValue
  106. typedef GPB_ENUM(GPBBytesValue_FieldNumber) {
  107. GPBBytesValue_FieldNumber_Value = 1,
  108. };
  109. // Wrapper message for `bytes`.
  110. //
  111. // The JSON representation for `BytesValue` is JSON string.
  112. @interface GPBBytesValue : GPBMessage
  113. // The bytes value.
  114. @property(nonatomic, readwrite, copy, null_resettable) NSData *value;
  115. @end
  116. NS_ASSUME_NONNULL_END
  117. CF_EXTERN_C_END
  118. // @@protoc_insertion_point(global_scope)