Response

對單一要求的回應。

JSON 表示法
{
  "requestId": string,
  "continued": boolean,
  "extensions": [
    {
      "@type": string,
      field1: ...,
      ...
    }
  ],

  // Union field result can be only one of the following:
  "error": {
    object (Status)
  },
  "response": {
    "@type": string,
    field1: ...,
    ...
  }
  // End of list of possible types for union field result.
}
欄位
requestId

string

這則訊息回應的 RequestId。

continued

boolean

如果為 true,此回應後面接著回應串流中與此回應相同的其他回應。

extensions[]

object

應用程式專屬回應中繼資料。

含有任意類型欄位的物件。額外的 "@type" 欄位則包含能辨識類型的 URI。範例:{ "id": 1234, "@type": "types.example.com/standard/id" }

聯集欄位 result。回應結果,可能為 error 或有效的 responseresult 只能採用下列其中一種設定:
error

object (Status)

如果處理要求時發生錯誤,就會造成錯誤。

response

object

如果呼叫成功,回應酬載。

含有任意類型欄位的物件。額外的 "@type" 欄位則包含能辨識類型的 URI。範例:{ "id": 1234, "@type": "types.example.com/standard/id" }