Google Apps Script API
    Preparing search index...
    interface CreativeFieldValuesCollection {
        get(
            profileId: string,
            creativeFieldId: string,
            id: string,
        ): CreativeFieldValue;
        insert(
            resource: CreativeFieldValue,
            profileId: string,
            creativeFieldId: string,
        ): CreativeFieldValue;
        list(
            profileId: string,
            creativeFieldId: string,
        ): CreativeFieldValuesListResponse;
        list(
            profileId: string,
            creativeFieldId: string,
            optionalArgs: object,
        ): CreativeFieldValuesListResponse;
        patch(
            resource: CreativeFieldValue,
            profileId: string,
            creativeFieldId: string,
            id: string,
        ): CreativeFieldValue;
        remove(profileId: string, creativeFieldId: string, id: string): void;
        update(
            resource: CreativeFieldValue,
            profileId: string,
            creativeFieldId: string,
        ): CreativeFieldValue;
    }
    Index

    Methods