Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ListImagesResponse

Type: object

ListImagesResponse returns image results and a next-page token.
images

Type: array

images is the current page.
Array item

Schema: ImageSummary

All schema constraints and annotations
{
  "description": "images is the current page.",
  "items": {
    "$ref": "#/components/schemas/ImageSummary"
  },
  "type": "array"
}
nextPageToken

Type: string

next_page_token is empty when there are no more pages.
All schema constraints and annotations
{
  "description": "next_page_token is empty when there are no more pages.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "ListImagesResponse returns image results and a next-page token.",
  "properties": {
    "images": {
      "description": "images is the current page.",
      "items": {
        "$ref": "#/components/schemas/ImageSummary"
      },
      "type": "array"
    },
    "nextPageToken": {
      "description": "next_page_token is empty when there are no more pages.",
      "type": "string"
    }
  },
  "title": "ListImagesResponse",
  "type": "object"
}