Google Apps Script API
    Preparing search index...
    interface WebPropertyAdWordsLinksCollection {
        get(
            accountId: string,
            webPropertyId: string,
            webPropertyAdWordsLinkId: string,
        ): EntityAdWordsLink;
        insert(
            resource: EntityAdWordsLink,
            accountId: string,
            webPropertyId: string,
        ): EntityAdWordsLink;
        list(accountId: string, webPropertyId: string): EntityAdWordsLinks;
        list(
            accountId: string,
            webPropertyId: string,
            optionalArgs: any,
        ): EntityAdWordsLinks;
        patch(
            resource: EntityAdWordsLink,
            accountId: string,
            webPropertyId: string,
            webPropertyAdWordsLinkId: string,
        ): EntityAdWordsLink;
        remove(
            accountId: string,
            webPropertyId: string,
            webPropertyAdWordsLinkId: string,
        ): void;
        update(
            resource: EntityAdWordsLink,
            accountId: string,
            webPropertyId: string,
            webPropertyAdWordsLinkId: string,
        ): EntityAdWordsLink;
    }
    Index

    Methods