blob: c0d389f0399cc1a89adc070a301de261986b96ee [file] [log] [blame]
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -05001// Generated by the protocol buffer compiler. DO NOT EDIT!
Thomas Van Lenten7c646282022-09-19 13:19:31 -04002// clang-format off
Thomas Van Lenten672adeb2022-10-06 16:16:07 -04003// source: google/protobuf/any.proto
Thomas Van Lenten7c646282022-09-19 13:19:31 -04004
Thomas Van Lenten020e4e32022-03-01 14:16:50 -05005#import "GPBDescriptor.h"
6#import "GPBMessage.h"
7#import "GPBRootObject.h"
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -05008
Protobuf Team Bot4ed02cc2023-02-08 06:31:58 -08009#if GOOGLE_PROTOBUF_OBJC_VERSION < 30007
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050010#error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
11#endif
Protobuf Team Bot4ed02cc2023-02-08 06:31:58 -080012#if 30007 < GOOGLE_PROTOBUF_OBJC_MIN_SUPPORTED_VERSION
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050013#error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
14#endif
15
16// @@protoc_insertion_point(imports)
17
18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wdeprecated-declarations"
20
21CF_EXTERN_C_BEGIN
22
23NS_ASSUME_NONNULL_BEGIN
24
25#pragma mark - GPBAnyRoot
26
27/**
28 * Exposes the extension registry for this file.
29 *
30 * The base class provides:
31 * @code
32 * + (GPBExtensionRegistry *)extensionRegistry;
33 * @endcode
34 * which is a @c GPBExtensionRegistry that includes all the extensions defined by
35 * this file and all files that it depends on.
36 **/
37GPB_FINAL @interface GPBAnyRoot : GPBRootObject
38@end
39
40#pragma mark - GPBAny
41
42typedef GPB_ENUM(GPBAny_FieldNumber) {
43 GPBAny_FieldNumber_TypeURL = 1,
44 GPBAny_FieldNumber_Value = 2,
45};
46
47/**
48 * `Any` contains an arbitrary serialized protocol buffer message along with a
49 * URL that describes the type of the serialized message.
50 *
51 * Protobuf library provides support to pack/unpack Any values in the form
52 * of utility functions or additional generated methods of the Any type.
53 *
54 * Example 1: Pack and unpack a message in C++.
55 *
56 * Foo foo = ...;
57 * Any any;
58 * any.PackFrom(foo);
59 * ...
60 * if (any.UnpackTo(&foo)) {
61 * ...
62 * }
63 *
64 * Example 2: Pack and unpack a message in Java.
65 *
66 * Foo foo = ...;
67 * Any any = Any.pack(foo);
68 * ...
69 * if (any.is(Foo.class)) {
70 * foo = any.unpack(Foo.class);
71 * }
Protobuf Team Bot60b71492022-11-07 13:30:29 -080072 * // or ...
73 * if (any.isSameTypeAs(Foo.getDefaultInstance())) {
74 * foo = any.unpack(Foo.getDefaultInstance());
75 * }
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050076 *
Adam Cozzetteb81c1272023-03-16 13:28:05 -070077 * Example 3: Pack and unpack a message in Python.
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050078 *
79 * foo = Foo(...)
80 * any = Any()
81 * any.Pack(foo)
82 * ...
83 * if any.Is(Foo.DESCRIPTOR):
84 * any.Unpack(foo)
85 * ...
86 *
Adam Cozzetteb81c1272023-03-16 13:28:05 -070087 * Example 4: Pack and unpack a message in Go
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050088 *
89 * foo := &pb.Foo{...}
Joshua Haberman25755ef2020-07-06 13:54:50 -070090 * any, err := anypb.New(foo)
91 * if err != nil {
92 * ...
93 * }
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050094 * ...
95 * foo := &pb.Foo{}
Joshua Haberman25755ef2020-07-06 13:54:50 -070096 * if err := any.UnmarshalTo(foo); err != nil {
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -050097 * ...
98 * }
99 *
100 * The pack methods provided by protobuf library will by default use
101 * 'type.googleapis.com/full.type.name' as the type URL and the unpack
102 * methods only use the fully qualified type name after the last '/'
103 * in the type URL, for example "foo.bar.com/x/y.z" will yield type
104 * name "y.z".
105 *
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500106 * JSON
Adam Cozzetteb81c1272023-03-16 13:28:05 -0700107 * ====
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500108 * The JSON representation of an `Any` value uses the regular
109 * representation of the deserialized, embedded message, with an
110 * additional field `\@type` which contains the type URL. Example:
111 *
112 * package google.profile;
113 * message Person {
114 * string first_name = 1;
115 * string last_name = 2;
116 * }
117 *
118 * {
119 * "\@type": "type.googleapis.com/google.profile.Person",
120 * "firstName": <string>,
121 * "lastName": <string>
122 * }
123 *
124 * If the embedded message type is well-known and has a custom JSON
125 * representation, that representation will be embedded adding a field
126 * `value` which holds the custom JSON in addition to the `\@type`
127 * field. Example (for message [google.protobuf.Duration][]):
128 *
129 * {
130 * "\@type": "type.googleapis.com/google.protobuf.Duration",
131 * "value": "1.212s"
132 * }
133 **/
134GPB_FINAL @interface GPBAny : GPBMessage
135
136/**
137 * A URL/resource name that uniquely identifies the type of the serialized
138 * protocol buffer message. This string must contain at least
139 * one "/" character. The last segment of the URL's path must represent
140 * the fully qualified name of the type (as in
141 * `path/google.protobuf.Duration`). The name should be in a canonical form
142 * (e.g., leading "." is not accepted).
143 *
144 * In practice, teams usually precompile into the binary all types that they
145 * expect it to use in the context of Any. However, for URLs which use the
146 * scheme `http`, `https`, or no scheme, one can optionally set up a type
147 * server that maps type URLs to message definitions as follows:
148 *
149 * * If no scheme is provided, `https` is assumed.
150 * * An HTTP GET on the URL must yield a [google.protobuf.Type][]
151 * value in binary format, or produce an error.
152 * * Applications are allowed to cache lookup results based on the
153 * URL, or have them precompiled into a binary to avoid any
154 * lookup. Therefore, binary compatibility needs to be preserved
155 * on changes to types. (Use versioned type names to manage
156 * breaking changes.)
157 *
158 * Note: this functionality is not currently available in the official
159 * protobuf release, and it is not used for type URLs beginning with
James Newton-Kingcfb702a2023-05-15 13:38:05 -0700160 * type.googleapis.com. As of May 2023, there are no widely used type server
161 * implementations and no plans to implement one.
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500162 *
163 * Schemes other than `http`, `https` (or the empty scheme) might be
164 * used with implementation specific semantics.
165 **/
166@property(nonatomic, readwrite, copy, null_resettable) NSString *typeURL;
167
168/** Must be a valid serialized protocol buffer of the above specified type. */
169@property(nonatomic, readwrite, copy, null_resettable) NSData *value;
170
171@end
172
173NS_ASSUME_NONNULL_END
174
175CF_EXTERN_C_END
176
177#pragma clang diagnostic pop
178
179// @@protoc_insertion_point(global_scope)
Thomas Van Lenten7c646282022-09-19 13:19:31 -0400180
Protobuf Team Bot4df096f2022-12-01 09:00:00 -0800181// clang-format on