/* 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. */ /** * * @export * @interface ActivityStatus */ export interface ActivityStatus { /** * The total number of items to be processed. * @type {number} * @memberof ActivityStatus */ 'items_total_count'?: number; /** * The number of items processed in the activity request. * @type {number} * @memberof ActivityStatus */ 'items_completed_count'?: number; /** * The total number of contacts in an import contacts request. * @type {number} * @memberof ActivityStatus */ 'person_count'?: number; /** * The number of non-correctable errors encountered during an import contacts request. * @type {number} * @memberof ActivityStatus */ 'error_count'?: number; /** * The number of correctable errors. Correctable errors include invalid email address format, birthday or anniversary format error, or does not have minimal contact information (no name or email address). Correctable errors are available in the product UI to correct. * @type {number} * @memberof ActivityStatus */ 'correctable_count'?: number; /** * The number of contacts that cannot be added to a list because they were previously unsubscribed, valid for contacts_file_ or json_import requests. * @type {number} * @memberof ActivityStatus */ 'cannot_add_to_list_count'?: number; /** * The number of lists processed in an add or remove list membership activity request. * @type {number} * @memberof ActivityStatus */ 'list_count'?: number; }