Create and manage organizations in your account. You use organizations to group together related projects. For example, you can use an organization to group together projects within a business unit or division.
Harness APIs (1.0)
The Harness Software Delivery Platform uses OpenAPI Specification v3.0. Harness constantly improves these APIs. Please be aware that some improvements could cause breaking changes.
The Harness API allows you to integrate and use all the services and modules we provide on the Harness Platform. If you use client-side SDKs, Harness functionality can be integrated with your client-side automation, helping you reduce manual efforts and deploy code faster.
For more information about how Harness works, visit the Harness Developer Hub.
The Harness API is a RESTful API that uses standard HTTP verbs. You can send requests in JSON, YAML, or form-data format. The format of the response matches the format of your request. You must send a single request at a time and ensure that you include your authentication key. For more information about this, go to Authentication.
Before you start integrating, get to know our API better by reading the following topics:
The methods you need to integrate with depend on the functionality you want to use. Work with your Harness Solutions Engineer to determine which methods you need.
To authenticate with the Harness API, you need to:
- Generate an API token on the Harness Platform.
- Send the API token you generate in the
x-api-key
header in each request.
To generate an API token, complete the following steps:
- Go to the Harness Platform.
- On the left-hand navigation, click My Profile.
- Click +API Key, enter a name for your key and then click Save.
- Within the API Key tile, click +Token.
- Enter a name for your token and click Generate Token. Important: Make sure to save your token securely. Harness does not store the API token for future reference, so make sure to save your token securely before you leave the page.
Send the token you created in the Harness Platform in the x-api-key header. For example: x-api-key: YOUR_API_KEY_HERE
The structure for each request and response is outlined in the API documentation. We have examples in JSON and YAML for every request and response. You can use our online editor to test the examples.
Field Name | Type | Default | Description |
---|---|---|---|
identifier | string | none | URL-friendly version of the name, used to identify a resource within it's scope and so needs to be unique within the scope. |
name | string | none | Human-friendly name for the resource. |
org | string | none | Limit to provided org identifiers. |
project | string | none | Limit to provided project identifiers. |
description | string | none | More information about the specific resource. |
tags | map[string]string | none | List of labels applied to the resource. |
order | string | desc | Order to use when sorting the specified fields. Type: enum(asc,desc). |
sort | string | none | Fields on which to sort. Note: Specify the fields that you want to use for sorting. When doing so, consider the operational overhead of sorting fields. |
limit | int | 30 | Pagination: Number of items to return. |
page | int | 1 | Pagination page number strategy: Specify the page number within the paginated collection related to the number of items in each page. |
created | int64 | none | Unix timestamp that shows when the resource was created (in milliseconds). |
updated | int64 | none | Unix timestamp that shows when the resource was last edited (in milliseconds). |
Harness uses conventional HTTP status codes to indicate the status of an API request. Generally, 2xx responses are reserved for success and 4xx status codes are reserved for failures. A 5xx response code indicates an error on the Harness server.
Error Code | Description |
---|---|
200 | OK |
201 | Created |
202 | Accepted |
204 | No Content |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
412 | Precondition Failed |
415 | Unsupported Media Type |
500 | Server Error |
To view our error response structures, go here.
The current version of our Beta APIs is yet to be announced. The version number will use the date-header format and will be valid only for our Beta APIs.
All our beta APIs are versioned as a Generation, and this version is included in the path to every API resource. For example, v1 beta APIs begin with app.harness.io/v1/
, where v1 is the API Generation.
The version number represents the core API and does not change frequently. The version number changes only if there is a significant departure from the basic underpinnings of the existing API. For example, when Harness performs a system-wide refactoring of core concepts or resources.
We use pagination to place limits on the number of responses associated with list endpoints. Pagination is achieved by the use of limit query parameters. The limit defaults to 30. Its maximum value is 100.
Following are the pagination headers supported in the response bodies of paginated APIs:
- X-Total-Elements : Indicates the total number of entries in a paginated response.
- X-Page-Number : Indicates the page number currently returned for a paginated response.
- X-Page-Size : Indicates the number of entries per page for a paginated response.
For example:
X-Total-Elements : 30
X-Page-Number : 0
X-Page-Size : 10
https://apidocs.harness.io/_mock/openapi-merged/
https://app.harness.io/
https://{vanity}/
- Mock server
https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey
- Harness host URL
https://app.harness.io/ng/api/apikey
- Vanity URL
https://app.harness.io/ng/api/apikey
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey?accountIdentifier=string&orgIdentifier=string&projectIdentifier=string&apiKeyType=USER&parentIdentifier=string&identifiers=string' \
-H 'x-api-key: YOUR_API_KEY_HERE'
Bad Request
- application/json
- application/yaml
{ "status": "SUCCESS", "code": "DEFAULT_ERROR_CODE", "message": "string", "correlationId": "string", "errors": [ { … } ] }
- Mock server
https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey
- Harness host URL
https://app.harness.io/ng/api/apikey
- Vanity URL
https://app.harness.io/ng/api/apikey
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey?accountIdentifier=string' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"identifier": "string",
"name": "string",
"description": "string",
"tags": {
"property1": "string",
"property2": "string"
},
"apiKeyType": "USER",
"parentIdentifier": "string",
"defaultTimeToExpireToken": 0,
"accountIdentifier": "string",
"projectIdentifier": "string",
"orgIdentifier": "string",
"governanceMetadata": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"messageBytes": {
"empty": true,
"validUtf8": true
},
"parserForType": {},
"serializedSize": 0,
"deny": true,
"detailsList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"policySetId": "string",
"policySetIdBytes": {
"empty": true,
"validUtf8": true
},
"deny": true,
"policyMetadataList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"severity": "string",
"initialized": true,
"identifier": "string",
"error": "string",
"status": "string",
"defaultInstanceForType": {},
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyId": "string",
"policyName": "string",
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"denyMessagesCount": 0,
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"updated": 0,
"errorBytes": {
"empty": true,
"validUtf8": true
},
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"policyMetadataCount": 0,
"policyMetadataOrBuilderList": [
{
"denyMessagesCount": 0,
"policyId": "string",
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"statusBytes": {
"empty": true,
"validUtf8": true
},
"errorBytes": {
"empty": true,
"validUtf8": true
},
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"policyName": "string",
"severity": "string",
"identifier": "string",
"status": "string",
"error": "string",
"updated": 0,
"orgId": "string",
"created": 0,
"accountId": "string",
"projectId": "string",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {
"nestedTypes": [],
"enumTypes": [],
"fields": [],
"extensions": [],
"oneofs": [],
"realOneofs": []
}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"initialized": true
}
],
"policySetName": "string",
"policySetNameBytes": {
"empty": true,
"validUtf8": true
},
"descriptionBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"initialized": true,
"identifier": "string",
"description": "string",
"status": "string",
"defaultInstanceForType": {},
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"idBytes": {
"empty": true,
"validUtf8": true
},
"detailsCount": 0,
"detailsOrBuilderList": [
{
"policySetId": "string",
"policySetIdBytes": {
"empty": true,
"validUtf8": true
},
"deny": true,
"policyMetadataList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"severity": "string",
"initialized": true,
"identifier": "string",
"error": "string",
"status": "string",
"defaultInstanceForType": {},
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyId": "string",
"policyName": "string",
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"denyMessagesCount": 0,
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"updated": 0,
"errorBytes": {
"empty": true,
"validUtf8": true
},
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"policyMetadataCount": 0,
"policyMetadataOrBuilderList": [
{
"denyMessagesCount": 0,
"policyId": "string",
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"statusBytes": {
"empty": true,
"validUtf8": true
},
"errorBytes": {
"empty": true,
"validUtf8": true
},
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"policyName": "string",
"severity": "string",
"identifier": "string",
"status": "string",
"error": "string",
"updated": 0,
"orgId": "string",
"created": 0,
"accountId": "string",
"projectId": "string",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {
"nestedTypes": [],
"enumTypes": [],
"fields": [],
"extensions": [],
"oneofs": [],
"realOneofs": []
}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"initialized": true
}
],
"policySetName": "string",
"policySetNameBytes": {
"empty": true,
"validUtf8": true
},
"descriptionBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"identifier": "string",
"description": "string",
"status": "string",
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"nestedTypeList": [
null
],
"nestedTypeOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"fields": [
{
"defaultValue": {}
}
],
"extensions": [
{
"defaultValue": {}
}
],
"oneofs": [
{
"fields": []
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"fields": []
}
]
}
},
"initialized": true
}
],
"entityBytes": {
"empty": true,
"validUtf8": true
},
"actionBytes": {
"empty": true,
"validUtf8": true
},
"typeBytes": {
"empty": true,
"validUtf8": true
},
"message": "string",
"id": "string",
"type": "string",
"timestamp": 0,
"initialized": true,
"entity": "string",
"status": "string",
"action": "string",
"defaultInstanceForType": {},
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"start": 0,
"end": 0,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"start": 0,
"end": 0,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"enumTypeOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"extensionOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"optionsOrBuilder": {
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"fieldOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionRangeOrBuilderList": [
{
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"start": 0,
"end": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"oneofDeclList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"oneofDeclOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"start": 0,
"end": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"stringValue": {
"empty": true,
"validUtf8": true
},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
{
"allFields": {}
}
],
"identifierValue": "string",
"identifierValueBytes": {
"empty": true,
"validUtf8": true
},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {
"empty": true,
"validUtf8": true
},
"nameList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {
"empty": true,
"validUtf8": true
},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
{
"allFields": {}
}
],
"identifierValue": "string",
"identifierValueBytes": {
"empty": true,
"validUtf8": true
},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {
"empty": true,
"validUtf8": true
},
"nameList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {
"empty": true,
"validUtf8": true
},
"dependencyList": [
"string"
],
"publicDependencyList": [
0
],
"weakDependencyList": [
0
],
"weakDependencyCount": 0,
"messageTypeList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"nestedTypeList": [
null
],
"nestedTypeOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"messageTypeOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"enumTypeList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"enumTypeOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"serviceList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"serviceOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionList": [
{
"unknownFields": {},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"extensionOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"optionsOrBuilder": {
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"sourceCodeInfo": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"locationCount": 0,
"locationOrBuilderList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"locationList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"sourceCodeInfoOrBuilder": {
"locationCount": 0,
"locationOrBuilderList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"locationList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"syntaxBytes": {
"empty": true,
"validUtf8": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
}
],
"services": [
{
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {},
"methods": [
{}
],
"name": "string"
}
],
"extensions": [
{
"index": 0,
"proto": {
"unknownFields": {},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
},
"packed": true
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"type": {},
"name": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"number": 0
}
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
{
"allFields": {}
}
],
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
"TARGET_TYPE_UNKNOWN"
],
"targetsCount": 0,
"editionDefaultsList": [
{
"allFields": {}
}
],
"editionDefaultsCount": 0,
"featureSupport": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"featureSupportOrBuilder": {
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
{
"allFields": {}
}
],
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
"TARGET_TYPE_UNKNOWN"
],
"targetsCount": 0,
"editionDefaultsList": [
{
"allFields": {}
}
],
"editionDefaultsCount": 0,
"featureSupport": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"featureSupportOrBuilder": {
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {},
"packed": true
}
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {},
"packed": true
}
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
}'
Bad Request
- application/json
- application/yaml
{ "status": "SUCCESS", "code": "DEFAULT_ERROR_CODE", "message": "string", "correlationId": "string", "errors": [ { … } ] }
- Mock server
https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey/{identifier}
- Harness host URL
https://app.harness.io/ng/api/apikey/{identifier}
- Vanity URL
https://app.harness.io/ng/api/apikey/{identifier}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://apidocs.harness.io/_mock/openapi-merged/ng/api/apikey/{identifier}' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"identifier": "string",
"name": "string",
"description": "string",
"tags": {
"property1": "string",
"property2": "string"
},
"apiKeyType": "USER",
"parentIdentifier": "string",
"defaultTimeToExpireToken": 0,
"accountIdentifier": "string",
"projectIdentifier": "string",
"orgIdentifier": "string",
"governanceMetadata": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"messageBytes": {
"empty": true,
"validUtf8": true
},
"parserForType": {},
"serializedSize": 0,
"deny": true,
"detailsList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"policySetId": "string",
"policySetIdBytes": {
"empty": true,
"validUtf8": true
},
"deny": true,
"policyMetadataList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"severity": "string",
"initialized": true,
"identifier": "string",
"error": "string",
"status": "string",
"defaultInstanceForType": {},
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyId": "string",
"policyName": "string",
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"denyMessagesCount": 0,
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"updated": 0,
"errorBytes": {
"empty": true,
"validUtf8": true
},
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"policyMetadataCount": 0,
"policyMetadataOrBuilderList": [
{
"denyMessagesCount": 0,
"policyId": "string",
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"statusBytes": {
"empty": true,
"validUtf8": true
},
"errorBytes": {
"empty": true,
"validUtf8": true
},
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"policyName": "string",
"severity": "string",
"identifier": "string",
"status": "string",
"error": "string",
"updated": 0,
"orgId": "string",
"created": 0,
"accountId": "string",
"projectId": "string",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {
"nestedTypes": [],
"enumTypes": [],
"fields": [],
"extensions": [],
"oneofs": [],
"realOneofs": []
}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"initialized": true
}
],
"policySetName": "string",
"policySetNameBytes": {
"empty": true,
"validUtf8": true
},
"descriptionBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"initialized": true,
"identifier": "string",
"description": "string",
"status": "string",
"defaultInstanceForType": {},
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"idBytes": {
"empty": true,
"validUtf8": true
},
"detailsCount": 0,
"detailsOrBuilderList": [
{
"policySetId": "string",
"policySetIdBytes": {
"empty": true,
"validUtf8": true
},
"deny": true,
"policyMetadataList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"parserForType": {},
"serializedSize": 0,
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"severity": "string",
"initialized": true,
"identifier": "string",
"error": "string",
"status": "string",
"defaultInstanceForType": {},
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyId": "string",
"policyName": "string",
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"denyMessagesCount": 0,
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"updated": 0,
"errorBytes": {
"empty": true,
"validUtf8": true
},
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
],
"policyMetadataCount": 0,
"policyMetadataOrBuilderList": [
{
"denyMessagesCount": 0,
"policyId": "string",
"policyIdBytes": {
"empty": true,
"validUtf8": true
},
"policyNameBytes": {
"empty": true,
"validUtf8": true
},
"severityBytes": {
"empty": true,
"validUtf8": true
},
"denyMessagesList": [
"string"
],
"statusBytes": {
"empty": true,
"validUtf8": true
},
"errorBytes": {
"empty": true,
"validUtf8": true
},
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"policyName": "string",
"severity": "string",
"identifier": "string",
"status": "string",
"error": "string",
"updated": 0,
"orgId": "string",
"created": 0,
"accountId": "string",
"projectId": "string",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {
"nestedTypes": [],
"enumTypes": [],
"fields": [],
"extensions": [],
"oneofs": [],
"realOneofs": []
}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"nestedTypeList": [],
"nestedTypeOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"nestedTypes": [
null
],
"enumTypes": [
null
],
"fields": [
null
],
"extensions": [
null
],
"oneofs": [
null
],
"name": "string",
"extendable": true,
"realOneofs": [
null
]
},
"initialized": true
}
],
"policySetName": "string",
"policySetNameBytes": {
"empty": true,
"validUtf8": true
},
"descriptionBytes": {
"empty": true,
"validUtf8": true
},
"identifierBytes": {
"empty": true,
"validUtf8": true
},
"identifier": "string",
"description": "string",
"status": "string",
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"extensionRangeList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"fieldList": [],
"fieldOrBuilderList": [],
"extensionRangeOrBuilderList": [],
"oneofDeclList": [],
"oneofDeclOrBuilderList": [],
"reservedRangeOrBuilderList": [],
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"fields": []
},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"fields": []
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"nestedTypeList": [
null
],
"nestedTypeOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"fields": [
{
"defaultValue": {}
}
],
"extensions": [
{
"defaultValue": {}
}
],
"oneofs": [
{
"fields": []
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"fields": []
}
]
}
},
"initialized": true
}
],
"entityBytes": {
"empty": true,
"validUtf8": true
},
"actionBytes": {
"empty": true,
"validUtf8": true
},
"typeBytes": {
"empty": true,
"validUtf8": true
},
"message": "string",
"id": "string",
"type": "string",
"timestamp": 0,
"initialized": true,
"entity": "string",
"status": "string",
"action": "string",
"defaultInstanceForType": {},
"statusBytes": {
"empty": true,
"validUtf8": true
},
"accountId": "string",
"accountIdBytes": {
"empty": true,
"validUtf8": true
},
"orgId": "string",
"orgIdBytes": {
"empty": true,
"validUtf8": true
},
"projectId": "string",
"projectIdBytes": {
"empty": true,
"validUtf8": true
},
"created": 0,
"descriptorForType": {
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"start": 0,
"end": 0,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"start": 0,
"end": 0,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"enumTypeOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"extensionOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"optionsOrBuilder": {
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"fieldOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"nestedTypeList": [
{}
],
"nestedTypeOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fieldCount": 0,
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"extensionRangeList": [
{
"allFields": {}
}
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"enumTypeList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"enumTypeOrBuilderList": [
{
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
}
],
"extensionList": [
{
"allFields": {}
}
],
"extensionOrBuilderList": [
{
"allFields": {}
}
],
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"messageSetWireFormat": true,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"fieldList": [
{
"allFields": {}
}
],
"fieldOrBuilderList": [
{
"allFields": {}
}
],
"extensionRangeOrBuilderList": [
{
"allFields": {}
}
],
"oneofDeclList": [
{
"allFields": {}
}
],
"oneofDeclOrBuilderList": [
{
"allFields": {}
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionRangeOrBuilderList": [
{
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"start": 0,
"end": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"declarationCount": 0,
"declarationList": [
null
],
"declarationOrBuilderList": [
null
],
"verification": "DECLARATION",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"oneofDeclList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"oneofDeclOrBuilderList": [
{
"name": "string",
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"start": 0,
"end": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"messageSetWireFormat": true,
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"stringValue": {
"empty": true,
"validUtf8": true
},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
{
"allFields": {}
}
],
"identifierValue": "string",
"identifierValueBytes": {
"empty": true,
"validUtf8": true
},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {
"empty": true,
"validUtf8": true
},
"nameList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {
"empty": true,
"validUtf8": true
},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
{
"allFields": {}
}
],
"identifierValue": "string",
"identifierValueBytes": {
"empty": true,
"validUtf8": true
},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {
"empty": true,
"validUtf8": true
},
"nameList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"mapEntry": true,
"noStandardDescriptorAccessor": true,
"deprecatedLegacyJsonFieldConflicts": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {
"empty": true,
"validUtf8": true
},
"dependencyList": [
"string"
],
"publicDependencyList": [
0
],
"weakDependencyList": [
0
],
"weakDependencyCount": 0,
"messageTypeList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"parserForType": {},
"serializedSize": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"nestedTypeList": [
null
],
"nestedTypeOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"messageTypeOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fieldCount": 0,
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"extensionRangeList": [
null
],
"oneofDeclCount": 0,
"nestedTypeCount": 0,
"enumTypeCount": 0,
"extensionCount": 0,
"extensionRangeCount": 0,
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"fieldList": [
null
],
"fieldOrBuilderList": [
null
],
"extensionRangeOrBuilderList": [
null
],
"oneofDeclList": [
null
],
"oneofDeclOrBuilderList": [
null
],
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"enumTypeList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"enumTypeOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"serviceList": [
{
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"serviceOrBuilderList": [
{
"name": "string",
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"extensionList": [
{
"unknownFields": {},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"extensionOrBuilderList": [
{
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"optionsOrBuilder": {
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"sourceCodeInfo": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"locationCount": 0,
"locationOrBuilderList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"locationList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"sourceCodeInfoOrBuilder": {
"locationCount": 0,
"locationOrBuilderList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"locationList": [
{
"pathList": [],
"spanList": [],
"leadingDetachedCommentsList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"syntaxBytes": {
"empty": true,
"validUtf8": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {
"empty": true,
"validUtf8": true
},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {
"empty": true,
"validUtf8": true
},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {
"empty": true,
"validUtf8": true
},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"csharpNamespace": "string",
"csharpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"swiftPrefix": "string",
"swiftPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {
"empty": true,
"validUtf8": true
},
"phpNamespace": "string",
"phpNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {
"empty": true,
"validUtf8": true
},
"rubyPackage": "string",
"rubyPackageBytes": {
"empty": true,
"validUtf8": true
},
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"parserForType": {},
"serializedSize": 0,
"initialized": true,
"defaultInstanceForType": {},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"unknownFields": {},
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"stringValue": {},
"doubleValue": 0.1,
"nameCount": 0,
"nameOrBuilderList": [
null
],
"identifierValue": "string",
"identifierValueBytes": {},
"positiveIntValue": 0,
"negativeIntValue": 0,
"aggregateValue": "string",
"aggregateValueBytes": {},
"nameList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
}
],
"services": [
{
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"methodList": [
null
],
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"methodCount": 0,
"methodOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {},
"methods": [
{}
],
"name": "string"
}
],
"extensions": [
{
"index": 0,
"proto": {
"unknownFields": {},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {}
},
"nameBytes": {},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {},
"defaultValueBytes": {},
"jsonNameBytes": {},
"typeNameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"reservedRangeList": [],
"reservedNameList": [],
"reservedRangeOrBuilderList": [],
"valueOrBuilderList": [],
"valueList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"values": [
null
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"file": {},
"containingType": {},
"fieldCount": 0,
"fields": [
null
],
"name": "string"
},
"packed": true
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"nestedTypes": [
{}
],
"enumTypes": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"reservedRangeList": [
{
"allFields": {}
}
],
"reservedNameList": [
"string"
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
{
"allFields": {}
}
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
{
"allFields": {}
}
],
"valueList": [
{
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"type": {},
"name": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"number": 0
}
],
"name": "string",
"closed": true
}
],
"fields": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
{
"allFields": {}
}
],
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
"TARGET_TYPE_UNKNOWN"
],
"targetsCount": 0,
"editionDefaultsList": [
{
"allFields": {}
}
],
"editionDefaultsCount": 0,
"featureSupport": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"featureSupportOrBuilder": {
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"packed": true
}
],
"extensions": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"label": "LABEL_OPTIONAL",
"name": "string",
"typeName": "string",
"type": "TYPE_DOUBLE",
"defaultValue": "string",
"number": 0,
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
null
],
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
null
],
"targetsCount": 0,
"editionDefaultsList": [
null
],
"editionDefaultsCount": 0,
"featureSupport": {
"allFields": {}
},
"featureSupportOrBuilder": {
"allFields": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"jsonName": "string",
"proto3Optional": true,
"oneofIndex": 0,
"extendee": "string",
"extendeeBytes": {
"empty": true,
"validUtf8": true
},
"defaultValueBytes": {
"empty": true,
"validUtf8": true
},
"jsonNameBytes": {
"empty": true,
"validUtf8": true
},
"typeNameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"retention": "RETENTION_UNKNOWN",
"editionDefaultsOrBuilderList": [
{
"allFields": {}
}
],
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"packed": true,
"ctype": "STRING",
"jstype": "JS_NORMAL",
"lazy": true,
"unverifiedLazy": true,
"weak": true,
"debugRedact": true,
"targetsList": [
"TARGET_TYPE_UNKNOWN"
],
"targetsCount": 0,
"editionDefaultsList": [
{
"allFields": {}
}
],
"editionDefaultsCount": 0,
"featureSupport": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"featureSupportOrBuilder": {
"editionIntroduced": "EDITION_UNKNOWN",
"editionDeprecated": "EDITION_UNKNOWN",
"deprecationWarning": "string",
"deprecationWarningBytes": {},
"editionRemoved": "EDITION_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"defaultInstanceForType": {
"allFields": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"jsonName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"enumType": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"reservedRangeList": [
null
],
"reservedNameList": [
null
],
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"reservedRangeCount": 0,
"reservedRangeOrBuilderList": [
null
],
"reservedNameCount": 0,
"valueCount": 0,
"valueOrBuilderList": [
null
],
"valueList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"deprecated": true,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"deprecatedLegacyJsonFieldConflicts": true,
"allowAlias": true,
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"values": [
{}
],
"name": "string",
"closed": true
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {
"index": 0,
"proto": {
"unknownFields": {},
"name": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"dependencyList": [],
"publicDependencyList": [],
"weakDependencyList": [],
"messageTypeList": [],
"messageTypeOrBuilderList": [],
"enumTypeList": [],
"enumTypeOrBuilderList": [],
"serviceList": [],
"serviceOrBuilderList": [],
"extensionList": [],
"extensionOrBuilderList": [],
"allFields": {}
},
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"messageTypes": [
null
],
"enumTypes": [
null
],
"services": [
null
],
"extensions": [
null
],
"dependencies": [
null
],
"publicDependencies": [
null
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{}
],
"name": "string"
},
"packed": true
}
],
"oneofs": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {},
"packed": true
}
],
"name": "string"
}
],
"name": "string",
"extendable": true,
"realOneofs": [
{
"index": 0,
"proto": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"name": "string",
"initialized": true,
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"optionsOrBuilder": {
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"nameBytes": {
"empty": true,
"validUtf8": true
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {
"empty": true,
"initialized": true,
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"serializedSizeAsMessageSet": 0
},
"initialized": true,
"features": {
"unknownFields": {},
"initialized": true,
"defaultInstanceForType": {},
"enumType": "ENUM_TYPE_UNKNOWN",
"parserForType": {},
"serializedSize": 0,
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"featuresOrBuilder": {
"enumType": "ENUM_TYPE_UNKNOWN",
"messageEncoding": "MESSAGE_ENCODING_UNKNOWN",
"utf8Validation": "UTF8_VALIDATION_UNKNOWN",
"fieldPresence": "FIELD_PRESENCE_UNKNOWN",
"repeatedFieldEncoding": "REPEATED_FIELD_ENCODING_UNKNOWN",
"jsonFormat": "JSON_FORMAT_UNKNOWN",
"defaultInstanceForType": {
"allFields": {}
},
"allFields": {
"property1": {},
"property2": {}
},
"unknownFields": {},
"initializationErrorString": "string",
"descriptorForType": {},
"initialized": true
},
"uninterpretedOptionList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
{
"nameOrBuilderList": [],
"nameList": [],
"allFields": {}
}
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"fullName": "string",
"file": {
"proto": {
"unknownFields": {},
"name": "string",
"package": "string",
"initialized": true,
"options": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {},
"allFieldsRaw": {}
},
"edition": "EDITION_UNKNOWN",
"defaultInstanceForType": {},
"syntax": "string",
"enumTypeCount": 0,
"extensionCount": 0,
"parserForType": {},
"serializedSize": 0,
"publicDependencyCount": 0,
"dependencyCount": 0,
"messageTypeCount": 0,
"serviceCount": 0,
"packageBytes": {},
"dependencyList": [
null
],
"publicDependencyList": [
null
],
"weakDependencyList": [
null
],
"weakDependencyCount": 0,
"messageTypeList": [
null
],
"messageTypeOrBuilderList": [
null
],
"enumTypeList": [
null
],
"enumTypeOrBuilderList": [
null
],
"serviceList": [
null
],
"serviceOrBuilderList": [
null
],
"extensionList": [
null
],
"extensionOrBuilderList": [
null
],
"optionsOrBuilder": {
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"allFields": {}
},
"sourceCodeInfo": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"sourceCodeInfoOrBuilder": {
"locationOrBuilderList": [],
"locationList": [],
"allFields": {}
},
"syntaxBytes": {},
"nameBytes": {},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"memoizedSerializedSize": 0
},
"options": {
"unknownFields": {},
"initialized": true,
"features": {
"allFields": {},
"allFieldsRaw": {}
},
"defaultInstanceForType": {},
"parserForType": {},
"serializedSize": 0,
"javaStringCheckUtf8": true,
"javaPackageBytes": {},
"javaOuterClassname": "string",
"javaOuterClassnameBytes": {},
"javaMultipleFiles": true,
"javaGenerateEqualsAndHash": true,
"optimizeFor": "SPEED",
"goPackage": "string",
"javaPackage": "string",
"goPackageBytes": {},
"ccGenericServices": true,
"javaGenericServices": true,
"pyGenericServices": true,
"deprecated": true,
"ccEnableArenas": true,
"objcClassPrefix": "string",
"objcClassPrefixBytes": {},
"csharpNamespace": "string",
"csharpNamespaceBytes": {},
"swiftPrefix": "string",
"swiftPrefixBytes": {},
"phpClassPrefix": "string",
"phpClassPrefixBytes": {},
"phpNamespace": "string",
"phpNamespaceBytes": {},
"phpMetadataNamespace": "string",
"phpMetadataNamespaceBytes": {},
"rubyPackage": "string",
"rubyPackageBytes": {},
"featuresOrBuilder": {
"allFields": {}
},
"uninterpretedOptionList": [
null
],
"uninterpretedOptionCount": 0,
"uninterpretedOptionOrBuilderList": [
null
],
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"descriptorForType": {},
"allFieldsRaw": {
"property1": {},
"property2": {}
},
"memoizedSerializedSize": 0
},
"messageTypes": [
{}
],
"enumTypes": [
{
"values": []
}
],
"services": [
{
"methods": []
}
],
"extensions": [
{
"defaultValue": {}
}
],
"dependencies": [
{}
],
"publicDependencies": [
{}
],
"name": "string",
"package": "string",
"file": {},
"fullName": "string"
},
"containingType": {},
"fieldCount": 0,
"fields": [
{
"index": 0,
"proto": {
"allFields": {}
},
"options": {
"editionDefaultsOrBuilderList": [],
"uninterpretedOptionList": [],
"uninterpretedOptionOrBuilderList": [],
"targetsList": [],
"editionDefaultsList": [],
"allFields": {},
"allFieldsRaw": {}
},
"fullName": "string",
"jsonName": "string",
"file": {
"messageTypes": [],
"enumTypes": [],
"services": [],
"extensions": [],
"dependencies": [],
"publicDependencies": []
},
"extensionScope": {},
"type": "DOUBLE",
"containingType": {},
"messageType": {},
"containingOneof": {},
"enumType": {
"values": []
},
"defaultValue": {},
"javaType": "INT",
"name": "string",
"number": 0,
"required": true,
"optional": true,
"repeated": true,
"mapField": true,
"extension": true,
"liteType": "DOUBLE",
"packable": true,
"liteJavaType": "INT",
"realContainingOneof": {},
"packed": true
}
],
"name": "string"
}
]
},
"allFields": {
"property1": {},
"property2": {}
},
"initializationErrorString": "string",
"memoizedSerializedSize": 0
}
}'
Bad Request
- application/json
- application/yaml
{ "status": "SUCCESS", "code": "DEFAULT_ERROR_CODE", "message": "string", "correlationId": "string", "errors": [ { … } ] }