Share feedback
Answers are generated based on the documentation.

Experimental

Schema

FilesListResponse

Type: object

ListResponse returns directory entries and a next-page token.
entries

Type: array

entries is the current page.
Array item

Schema: FileInfo

All schema constraints and annotations
{
  "description": "entries is the current page.",
  "items": {
    "$ref": "#/components/schemas/FileInfo"
  },
  "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": "ListResponse returns directory entries and a next-page token.",
  "properties": {
    "entries": {
      "description": "entries is the current page.",
      "items": {
        "$ref": "#/components/schemas/FileInfo"
      },
      "type": "array"
    },
    "nextPageToken": {
      "description": "next_page_token is empty when there are no more pages.",
      "type": "string"
    }
  },
  "title": "ListResponse",
  "type": "object"
}