/* 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. */ // May contain unused imports in some cases // @ts-ignore import { CreateCSVImportActivity201ResponseLinks } from './create-csvimport-activity201-response-links'; // May contain unused imports in some cases // @ts-ignore import { CreateListRemoveActivity201ResponseStatus } from './create-list-remove-activity201-response-status'; /** * * @export * @interface CreateListRemoveActivity201Response */ export interface CreateListRemoveActivity201Response { /** * Unique ID for the activity. * @type {string} * @memberof CreateListRemoveActivity201Response */ 'activity_id'?: string; /** * The state of the request:

* @type {string} * @memberof CreateListRemoveActivity201Response */ 'state'?: string; /** * Timestamp showing when we began processing the activity request, in ISO-8601 format. * @type {string} * @memberof CreateListRemoveActivity201Response */ 'started_at'?: string; /** * Timestamp showing when we completed processing the activity, in ISO-8601 format. * @type {string} * @memberof CreateListRemoveActivity201Response */ 'completed_at'?: string; /** * Timestamp showing when we created the activity, in ISO-8601 format. * @type {string} * @memberof CreateListRemoveActivity201Response */ 'created_at'?: string; /** * Timestamp showing when we last updated the activity, in ISO-8601 format. * @type {string} * @memberof CreateListRemoveActivity201Response */ 'updated_at'?: string; /** * Shows the percent done for an activity that we are still processing. * @type {number} * @memberof CreateListRemoveActivity201Response */ 'percent_done'?: number; /** * Array of messages describing the errors that occurred. * @type {Array} * @memberof CreateListRemoveActivity201Response */ 'activity_errors'?: Array; /** * * @type {CreateListRemoveActivity201ResponseStatus} * @memberof CreateListRemoveActivity201Response */ 'status'?: CreateListRemoveActivity201ResponseStatus; /** * * @type {CreateCSVImportActivity201ResponseLinks} * @memberof CreateListRemoveActivity201Response */ '_links'?: CreateCSVImportActivity201ResponseLinks; }