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

ApprovalList

import type { ApprovalList } from "https://googleapis.deno.dev/v1/drive:v3.ts";

The response of an Approvals list request.

interface ApprovalList {
items?: Approval[];
kind?: string;
nextPageToken?: string;
}

§Properties

§
items?: Approval[]
[src]

The list of Approvals. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.

§
kind?: string
[src]

This is always drive#approvalList

§
nextPageToken?: string
[src]

The page token for the next page of Approvals. This will be absent if the end of the Approvals list has been reached. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results.