Wrappers.pbobjc.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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 != 30001
  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. #pragma clang diagnostic push
  9. #pragma clang diagnostic ignored "-Wdeprecated-declarations"
  10. CF_EXTERN_C_BEGIN
  11. NS_ASSUME_NONNULL_BEGIN
  12. #pragma mark - GPBWrappersRoot
  13. /// Exposes the extension registry for this file.
  14. ///
  15. /// The base class provides:
  16. /// @code
  17. /// + (GPBExtensionRegistry *)extensionRegistry;
  18. /// @endcode
  19. /// which is a @c GPBExtensionRegistry that includes all the extensions defined by
  20. /// this file and all files that it depends on.
  21. @interface GPBWrappersRoot : GPBRootObject
  22. @end
  23. #pragma mark - GPBDoubleValue
  24. typedef GPB_ENUM(GPBDoubleValue_FieldNumber) {
  25. GPBDoubleValue_FieldNumber_Value = 1,
  26. };
  27. /// Wrapper message for `double`.
  28. ///
  29. /// The JSON representation for `DoubleValue` is JSON number.
  30. @interface GPBDoubleValue : GPBMessage
  31. /// The double value.
  32. @property(nonatomic, readwrite) double value;
  33. @end
  34. #pragma mark - GPBFloatValue
  35. typedef GPB_ENUM(GPBFloatValue_FieldNumber) {
  36. GPBFloatValue_FieldNumber_Value = 1,
  37. };
  38. /// Wrapper message for `float`.
  39. ///
  40. /// The JSON representation for `FloatValue` is JSON number.
  41. @interface GPBFloatValue : GPBMessage
  42. /// The float value.
  43. @property(nonatomic, readwrite) float value;
  44. @end
  45. #pragma mark - GPBInt64Value
  46. typedef GPB_ENUM(GPBInt64Value_FieldNumber) {
  47. GPBInt64Value_FieldNumber_Value = 1,
  48. };
  49. /// Wrapper message for `int64`.
  50. ///
  51. /// The JSON representation for `Int64Value` is JSON string.
  52. @interface GPBInt64Value : GPBMessage
  53. /// The int64 value.
  54. @property(nonatomic, readwrite) int64_t value;
  55. @end
  56. #pragma mark - GPBUInt64Value
  57. typedef GPB_ENUM(GPBUInt64Value_FieldNumber) {
  58. GPBUInt64Value_FieldNumber_Value = 1,
  59. };
  60. /// Wrapper message for `uint64`.
  61. ///
  62. /// The JSON representation for `UInt64Value` is JSON string.
  63. @interface GPBUInt64Value : GPBMessage
  64. /// The uint64 value.
  65. @property(nonatomic, readwrite) uint64_t value;
  66. @end
  67. #pragma mark - GPBInt32Value
  68. typedef GPB_ENUM(GPBInt32Value_FieldNumber) {
  69. GPBInt32Value_FieldNumber_Value = 1,
  70. };
  71. /// Wrapper message for `int32`.
  72. ///
  73. /// The JSON representation for `Int32Value` is JSON number.
  74. @interface GPBInt32Value : GPBMessage
  75. /// The int32 value.
  76. @property(nonatomic, readwrite) int32_t value;
  77. @end
  78. #pragma mark - GPBUInt32Value
  79. typedef GPB_ENUM(GPBUInt32Value_FieldNumber) {
  80. GPBUInt32Value_FieldNumber_Value = 1,
  81. };
  82. /// Wrapper message for `uint32`.
  83. ///
  84. /// The JSON representation for `UInt32Value` is JSON number.
  85. @interface GPBUInt32Value : GPBMessage
  86. /// The uint32 value.
  87. @property(nonatomic, readwrite) uint32_t value;
  88. @end
  89. #pragma mark - GPBBoolValue
  90. typedef GPB_ENUM(GPBBoolValue_FieldNumber) {
  91. GPBBoolValue_FieldNumber_Value = 1,
  92. };
  93. /// Wrapper message for `bool`.
  94. ///
  95. /// The JSON representation for `BoolValue` is JSON `true` and `false`.
  96. @interface GPBBoolValue : GPBMessage
  97. /// The bool value.
  98. @property(nonatomic, readwrite) BOOL value;
  99. @end
  100. #pragma mark - GPBStringValue
  101. typedef GPB_ENUM(GPBStringValue_FieldNumber) {
  102. GPBStringValue_FieldNumber_Value = 1,
  103. };
  104. /// Wrapper message for `string`.
  105. ///
  106. /// The JSON representation for `StringValue` is JSON string.
  107. @interface GPBStringValue : GPBMessage
  108. /// The string value.
  109. @property(nonatomic, readwrite, copy, null_resettable) NSString *value;
  110. @end
  111. #pragma mark - GPBBytesValue
  112. typedef GPB_ENUM(GPBBytesValue_FieldNumber) {
  113. GPBBytesValue_FieldNumber_Value = 1,
  114. };
  115. /// Wrapper message for `bytes`.
  116. ///
  117. /// The JSON representation for `BytesValue` is JSON string.
  118. @interface GPBBytesValue : GPBMessage
  119. /// The bytes value.
  120. @property(nonatomic, readwrite, copy, null_resettable) NSData *value;
  121. @end
  122. NS_ASSUME_NONNULL_END
  123. CF_EXTERN_C_END
  124. #pragma clang diagnostic pop
  125. // @@protoc_insertion_point(global_scope)