Google Apps Script API
    Preparing search index...
    interface AccountsCollection {
        authinfo(): AccountsAuthInfoResponse;
        claimwebsite(
            merchantId: string,
            accountId: string,
        ): AccountsClaimWebsiteResponse;
        claimwebsite(
            merchantId: string,
            accountId: string,
            optionalArgs: object,
        ): AccountsClaimWebsiteResponse;
        custombatch(
            resource: AccountsCustomBatchRequest,
        ): AccountsCustomBatchResponse;
        custombatch(
            resource: AccountsCustomBatchRequest,
            optionalArgs: object,
        ): AccountsCustomBatchResponse;
        get(
            merchantId: string,
            accountId: string,
        ): GoogleAppsScript.Content.Schema.Account;
        insert(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
        ): GoogleAppsScript.Content.Schema.Account;
        insert(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
            optionalArgs: object,
        ): GoogleAppsScript.Content.Schema.Account;
        link(
            resource: AccountsLinkRequest,
            merchantId: string,
            accountId: string,
        ): AccountsLinkResponse;
        list(
            merchantId: string,
        ): GoogleAppsScript.Content.Schema.AccountsListResponse;
        list(
            merchantId: string,
            optionalArgs: object,
        ): GoogleAppsScript.Content.Schema.AccountsListResponse;
        patch(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
            accountId: string,
        ): GoogleAppsScript.Content.Schema.Account;
        patch(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
            accountId: string,
            optionalArgs: object,
        ): GoogleAppsScript.Content.Schema.Account;
        remove(merchantId: string, accountId: string): void;
        remove(merchantId: string, accountId: string, optionalArgs: object): void;
        update(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
            accountId: string,
        ): GoogleAppsScript.Content.Schema.Account;
        update(
            resource: GoogleAppsScript.Content.Schema.Account,
            merchantId: string,
            accountId: string,
            optionalArgs: object,
        ): GoogleAppsScript.Content.Schema.Account;
    }
    Index

    Methods