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

ListAccountsResponse

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

Response message for Accounts.ListAccounts.

interface ListAccountsResponse {
accounts?: Account[];
nextPageToken?: string;
}

§Properties

§
accounts?: Account[]
[src]

A collection of accounts to which the user has access. The personal account of the user doing the query will always be the first item of the result, unless it is filtered out.

§
nextPageToken?: string
[src]

If the number of accounts exceeds the requested page size, this field is populated with a token to fetch the next page of accounts on a subsequent call to accounts.list. If there are no more accounts, this field is not present in the response.