AppSupportedLanguagesQueryResponse
Paginated response object for the supported app languages query.
Declaration
object AppSupportedLanguagesQueryResponseProperties
| Name | Type | Description |
|---|---|---|
result | [AppSupportedLanguages] | Array of |
pagination | QueryPaginationResult | Pagination metadata for the result set. See fields below. Read-only. |
error | Error | Error details if the request failed. Omitted entirely on success. See Error. Read-only. |
Discussion
The AppSupportedLanguagesQueryResponse object is the top-level envelope returned by Query Supported App Languages.
Example
{
"result": [
{
"name": "United States",
"countryCode": "US",
"adsSupportedLanguages": [
{
"language": "en",
"languageCode": "en-US"
},
{
"language": "es",
"languageCode": "es-US"
}
],
"adsDefaultLanguages": [
{
"language": "en",
"languageCode": "en-US"
}
]
}
],
"pagination": {
"offset": 0,
"pageSize": 100,
"totalCount": 91
}
}The pagination object contains the following fields:
Field | Description |
|---|---|
| Number of results per page |
| Zero-based offset of the first result |
| Total number of matching records. Only populated when the request sends |