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

    Methods