webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Api is a light-weight descriptor for a protocol buffer service. More...
#import <Api.pbobjc.h>
Properties | |
NSString * | name |
NSMutableArray< GPBMethod * > * | methodsArray |
The methods of this api, in unspecified order. More... | |
NSUInteger | methodsArray_Count |
The number of items in methodsArray without causing the array to be created. More... | |
NSMutableArray< GPBOption * > * | optionsArray |
Any metadata attached to the API. More... | |
NSUInteger | optionsArray_Count |
The number of items in optionsArray without causing the array to be created. More... | |
NSString * | version |
GPBSourceContext * | sourceContext |
BOOL | hasSourceContext |
Test to see if sourceContext has been set. More... | |
NSMutableArray< GPBMixin * > * | mixinsArray |
Included APIs. See [Mixin][]. More... | |
NSUInteger | mixinsArray_Count |
The number of items in mixinsArray without causing the array to be created. More... | |
enum GPBSyntax | syntax |
The source syntax of the service. More... | |
Additional Inherited Members |
Api is a light-weight descriptor for a protocol buffer service.
|
readwritenonatomicstrong |
The methods of this api, in unspecified order.
|
readnonatomicassign |
The number of items in methodsArray
without causing the array to be created.
|
readwritenonatomicstrong |
Included APIs. See [Mixin][].
|
readnonatomicassign |
The number of items in mixinsArray
without causing the array to be created.
The fully qualified name of this api, including package name followed by the api's simple name.
|
readwritenonatomicstrong |
Any metadata attached to the API.
|
readnonatomicassign |
The number of items in optionsArray
without causing the array to be created.
|
readwritenonatomicstrong |
Source context for the protocol buffer service represented by this message.
|
readwritenonatomiccopy |
A version string for this api. If specified, must have the form major-version.minor-version
, as in 1.10
. If the minor version is omitted, it defaults to zero. If the entire version field is empty, the major version is derived from the package name, as outlined below. If the field is not empty, the version in the package name will be verified to be consistent with what is provided here.
The versioning schema uses semantic versioning where the major version number indicates a breaking change and the minor version an additive, non-breaking change. Both version numbers are signals to users what to expect from different versions, and should be carefully chosen based on the product plan.
The major version is also reflected in the package name of the API, which must end in v<major-version>
, as in google.feature.v1
. For major versions 0 and 1, the suffix can be omitted. Zero major versions must only be used for experimental, none-GA apis.