Contents

AppSupportedLanguagesQueryResponse

Paginated response object for the supported app languages query.

Declaration

object AppSupportedLanguagesQueryResponse

Properties

NameTypeDescription
result[AppSupportedLanguages]

Array of AppSupportedLanguages objects, one per market. Read-only.

paginationQueryPaginationResult

Pagination metadata for the result set. See fields below. Read-only.

errorError

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

pageSize

Number of results per page

offset

Zero-based offset of the first result

totalCount

Total number of matching records. Only populated when the request sends fetchTotalCount: true

See Also