A response to a single Request.
| JSON representation |
|---|
{ "requestId": string, "continued": boolean, "extensions": [ { "@type": string, field1: ..., ... } ], // Union field |
| Fields | |
|---|---|
requestId |
The requestId of the Request this message is in response to. |
continued |
If true, this Response is followed by additional responses that are in the same response stream as this Response. |
extensions[] |
Application specific response metadata. An object containing fields of an arbitrary type. An additional field |
Union field result. The response result, which can be either an error or a valid response. result can be only one of the following: |
|
error |
The error result if there was an error processing the request. |
response |
The response payload if the call was a success. An object containing fields of an arbitrary type. An additional field |