/* tslint:disable */ /* eslint-disable */ /** * Constant Contact API v3 * Swagger build version 3.0.2475 * * The version of the OpenAPI document: 1.0.116 * Contact: webservices@constantcontact.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Select the source used to identify contacts to which a tag is added or removed. Source types are mutually exclusive. * @export * @interface CreateTagRemoveActivityRequestSource */ export interface CreateTagRemoveActivityRequestSource { /** * An array of contacts IDs. * @type {Array} * @memberof CreateTagRemoveActivityRequestSource */ 'contact_ids'?: Array; /** * An array of list IDs ( list_id ). * @type {Array} * @memberof CreateTagRemoveActivityRequestSource */ 'list_ids'?: Array; /** * An array of tags ( tag_id ). * @type {Array} * @memberof CreateTagRemoveActivityRequestSource */ 'tag_ids'?: Array; /** * Use to identify contacts with an active (billable) status. * @type {boolean} * @memberof CreateTagRemoveActivityRequestSource */ 'all_active_contacts'?: boolean; /** * Use to identify newly subscribed contacts. * @type {boolean} * @memberof CreateTagRemoveActivityRequestSource */ 'new_subscriber'?: boolean; }