1 // Generated by the protocol buffer compiler. DO NOT EDIT!
2 // source: google/protobuf/wrappers.proto
3
4 // This CPP symbol can be defined to use imports that match up to the framework
5 // imports needed when using CocoaPods.
6 #if !defined(GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS)
7 #define GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS 0
8 #endif
9
10 #if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS
11 #import <Protobuf/GPBProtocolBuffers.h>
12 #else
13 #import "GPBProtocolBuffers.h"
14 #endif
15
16 #if GOOGLE_PROTOBUF_OBJC_GEN_VERSION != 30001
17 #error This file was generated by a different version of protoc which is incompatible with your Protocol Buffer library sources.
18 #endif
19
20 // @@protoc_insertion_point(imports)
21
22 #pragma clang diagnostic push
23 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
24
25 CF_EXTERN_C_BEGIN
26
27 NS_ASSUME_NONNULL_BEGIN
28
29 #pragma mark - GPBWrappersRoot
30
31 /// Exposes the extension registry for this file.
32 ///
33 /// The base class provides:
34 /// @code
35 /// + (GPBExtensionRegistry *)extensionRegistry;
36 /// @endcode
37 /// which is a @c GPBExtensionRegistry that includes all the extensions defined by
38 /// this file and all files that it depends on.
39 @interface GPBWrappersRoot : GPBRootObject
40 @end
41
42 #pragma mark - GPBDoubleValue
43
44 typedef GPB_ENUM(GPBDoubleValue_FieldNumber) {
45 GPBDoubleValue_FieldNumber_Value = 1,
46 };
47
48 /// Wrapper message for `double`.
49 ///
50 /// The JSON representation for `DoubleValue` is JSON number.
51 @interface GPBDoubleValue : GPBMessage
52
53 /// The double value.
property(nonatomic,readwrite)54 @property(nonatomic, readwrite) double value;
55
56 @end
57
58 #pragma mark - GPBFloatValue
59
60 typedef GPB_ENUM(GPBFloatValue_FieldNumber) {
61 GPBFloatValue_FieldNumber_Value = 1,
62 };
63
64 /// Wrapper message for `float`.
65 ///
66 /// The JSON representation for `FloatValue` is JSON number.
67 @interface GPBFloatValue : GPBMessage
68
69 /// The float value.
property(nonatomic,readwrite)70 @property(nonatomic, readwrite) float value;
71
72 @end
73
74 #pragma mark - GPBInt64Value
75
76 typedef GPB_ENUM(GPBInt64Value_FieldNumber) {
77 GPBInt64Value_FieldNumber_Value = 1,
78 };
79
80 /// Wrapper message for `int64`.
81 ///
82 /// The JSON representation for `Int64Value` is JSON string.
83 @interface GPBInt64Value : GPBMessage
84
85 /// The int64 value.
property(nonatomic,readwrite)86 @property(nonatomic, readwrite) int64_t value;
87
88 @end
89
90 #pragma mark - GPBUInt64Value
91
92 typedef GPB_ENUM(GPBUInt64Value_FieldNumber) {
93 GPBUInt64Value_FieldNumber_Value = 1,
94 };
95
96 /// Wrapper message for `uint64`.
97 ///
98 /// The JSON representation for `UInt64Value` is JSON string.
99 @interface GPBUInt64Value : GPBMessage
100
101 /// The uint64 value.
property(nonatomic,readwrite)102 @property(nonatomic, readwrite) uint64_t value;
103
104 @end
105
106 #pragma mark - GPBInt32Value
107
108 typedef GPB_ENUM(GPBInt32Value_FieldNumber) {
109 GPBInt32Value_FieldNumber_Value = 1,
110 };
111
112 /// Wrapper message for `int32`.
113 ///
114 /// The JSON representation for `Int32Value` is JSON number.
115 @interface GPBInt32Value : GPBMessage
116
117 /// The int32 value.
property(nonatomic,readwrite)118 @property(nonatomic, readwrite) int32_t value;
119
120 @end
121
122 #pragma mark - GPBUInt32Value
123
124 typedef GPB_ENUM(GPBUInt32Value_FieldNumber) {
125 GPBUInt32Value_FieldNumber_Value = 1,
126 };
127
128 /// Wrapper message for `uint32`.
129 ///
130 /// The JSON representation for `UInt32Value` is JSON number.
131 @interface GPBUInt32Value : GPBMessage
132
133 /// The uint32 value.
property(nonatomic,readwrite)134 @property(nonatomic, readwrite) uint32_t value;
135
136 @end
137
138 #pragma mark - GPBBoolValue
139
140 typedef GPB_ENUM(GPBBoolValue_FieldNumber) {
141 GPBBoolValue_FieldNumber_Value = 1,
142 };
143
144 /// Wrapper message for `bool`.
145 ///
146 /// The JSON representation for `BoolValue` is JSON `true` and `false`.
147 @interface GPBBoolValue : GPBMessage
148
149 /// The bool value.
property(nonatomic,readwrite)150 @property(nonatomic, readwrite) BOOL value;
151
152 @end
153
154 #pragma mark - GPBStringValue
155
156 typedef GPB_ENUM(GPBStringValue_FieldNumber) {
157 GPBStringValue_FieldNumber_Value = 1,
158 };
159
160 /// Wrapper message for `string`.
161 ///
162 /// The JSON representation for `StringValue` is JSON string.
163 @interface GPBStringValue : GPBMessage
164
165 /// The string value.
property(nonatomic,readwrite,copy,null_resettable)166 @property(nonatomic, readwrite, copy, null_resettable) NSString *value;
167
168 @end
169
170 #pragma mark - GPBBytesValue
171
172 typedef GPB_ENUM(GPBBytesValue_FieldNumber) {
173 GPBBytesValue_FieldNumber_Value = 1,
174 };
175
176 /// Wrapper message for `bytes`.
177 ///
178 /// The JSON representation for `BytesValue` is JSON string.
179 @interface GPBBytesValue : GPBMessage
180
181 /// The bytes value.
182 @property(nonatomic, readwrite, copy, null_resettable) NSData *value;
183
184 @end
185
186 NS_ASSUME_NONNULL_END
187
188 CF_EXTERN_C_END
189
190 #pragma clang diagnostic pop
191
192 // @@protoc_insertion_point(global_scope)
193