/* 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 { CreateExportActivity201ResponseStatus } from './create-export-activity201-response-status'; // May contain unused imports in some cases // @ts-ignore import { GetAllActivities200ResponseActivitiesInnerLinks } from './get-all-activities200-response-activities-inner-links'; /** * Activity status for contact_exports activity * @export * @interface ActivityExportStatus */ export interface ActivityExportStatus { /** * Unique ID for the activity. * @type {string} * @memberof ActivityExportStatus */ 'activity_id'?: string; /** *

The state of the request:

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