Google Apps Script API
    Preparing search index...
    interface RemarketingAudienceCollection {
        get(
            accountId: string,
            webPropertyId: string,
            remarketingAudienceId: string,
        ): RemarketingAudience;
        insert(
            resource: RemarketingAudience,
            accountId: string,
            webPropertyId: string,
        ): RemarketingAudience;
        list(accountId: string, webPropertyId: string): RemarketingAudiences;
        list(
            accountId: string,
            webPropertyId: string,
            optionalArgs: any,
        ): RemarketingAudiences;
        patch(
            resource: RemarketingAudience,
            accountId: string,
            webPropertyId: string,
            remarketingAudienceId: string,
        ): RemarketingAudience;
        remove(
            accountId: string,
            webPropertyId: string,
            remarketingAudienceId: string,
        ): void;
        update(
            resource: RemarketingAudience,
            accountId: string,
            webPropertyId: string,
            remarketingAudienceId: string,
        ): RemarketingAudience;
    }
    Index

    Methods