Google Apps Script API
    Preparing search index...
    interface WebpropertyUserLinksCollection {
        insert(
            resource: EntityUserLink,
            accountId: string,
            webPropertyId: string,
        ): EntityUserLink;
        list(accountId: string, webPropertyId: string): EntityUserLinks;
        list(
            accountId: string,
            webPropertyId: string,
            optionalArgs: any,
        ): EntityUserLinks;
        remove(accountId: string, webPropertyId: string, linkId: string): void;
        update(
            resource: EntityUserLink,
            accountId: string,
            webPropertyId: string,
            linkId: string,
        ): EntityUserLink;
    }
    Index

    Methods