Identifies what kind of resource this message is. This `kind` is always the fixed string "analyticsData#batchRunReports". Useful to distinguish between response types in JSON.
reports
array
Individual responses. Each response has a separate report request.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BatchRunReportsResponse",
"title": "BatchRunReportsResponse",
"description": "The batch response containing multiple reports.",
"properties": {
"kind": {
"description": "Identifies what kind of resource this message is. This `kind` is always the fixed string \"analyticsData#batchRunReports\". Useful to distinguish between response types in JSON.",
"type": "string",
"example": "example_value"
},
"reports": {
"description": "Individual responses. Each response has a separate report request.",
"items": {
"$ref": "#/components/schemas/RunReportResponse"
},
"type": "array"
}
},
"type": "object"
}