Request

批次執行時傳送的要求訊息。

JSON 表示法
{
  "requestId": string,
  "methodName": string,
  "request": {
    "@type": string,
    field1: ...,
    ...
  },
  "extensions": [
    {
      "@type": string,
      field1: ...,
      ...
    }
  ]
}
欄位
requestId

string

批次中此要求的專屬 ID。含有相符 requestId 的回應訊息是針對該要求的回應。針對要求串流方法,相同的 requestId 可能會多次使用,以傳送屬於單一方法的所有要求訊息。如為回應串流方法,同一個 requestId 可能會顯示在多則回應訊息中。

methodName

string

要呼叫的方法。必須為完整的方法名稱。範例:google.rpc.batch.Batch.Execute

request

object

要求酬載。

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

extensions[]

object

應用程式特定要求的中繼資料。

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