Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FoldersListOptions

import type { FoldersListOptions } from "https://googleapis.deno.dev/v1/storage:v1.ts";

Additional options for Storage#foldersList.

interface FoldersListOptions {
delimiter?: string;
endOffset?: string;
pageSize?: number;
pageToken?: string;
prefix?: string;
startOffset?: string;
}

§Properties

§
delimiter?: string
[src]

Returns results in a directory-like mode. The only supported value is '/'. If set, items will only contain folders that either exactly match the prefix, or are one level below the prefix.

§
endOffset?: string
[src]

Filter results to folders whose names are lexicographically before endOffset. If startOffset is also set, the folders listed will have names between startOffset (inclusive) and endOffset (exclusive).

§
pageSize?: number
[src]

Maximum number of items to return in a single page of responses.

§
pageToken?: string
[src]

A previously-returned page token representing part of the larger set of results to view.

§
prefix?: string
[src]

Filter results to folders whose paths begin with this prefix. If set, the value must either be an empty string or end with a '/'.

§
startOffset?: string
[src]

Filter results to folders whose names are lexicographically equal to or after startOffset. If endOffset is also set, the folders listed will have names between startOffset (inclusive) and endOffset (exclusive).