/* 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 { CreateTagRemoveActivity201ResponseLinks } from './create-tag-remove-activity201-response-links'; // May contain unused imports in some cases // @ts-ignore import { CreateTagRemoveActivity201ResponseStatus } from './create-tag-remove-activity201-response-status'; /** * * @export * @interface ActivityTagging */ export interface ActivityTagging { /** * The system assigned UUID that uniquely identifies an activity. * @type {string} * @memberof ActivityTagging */ 'activity_id': string; /** * The activity processing state. * @type {string} * @memberof ActivityTagging */ 'state': string; /** * Timestamp showing when processing started for the activity, in ISO-8601 format. * @type {string} * @memberof ActivityTagging */ 'started_at'?: string; /** * Timestamp showing when processing completed for the activity, in ISO-8601 format. * @type {string} * @memberof ActivityTagging */ 'completed_at'?: string; /** * Timestamp showing when the activity was first requested, in ISO-8601 format. * @type {string} * @memberof ActivityTagging */ 'created_at'?: string; /** * Timestamp showing when the activity was last updated, in ISO-8601 format. * @type {string} * @memberof ActivityTagging */ 'updated_at'?: string; /** * The processing percent complete for the activity. * @type {number} * @memberof ActivityTagging */ 'percent_done'?: number; /** * An array of error message strings describing the errors that occurred. * @type {Array} * @memberof ActivityTagging */ 'activity_errors'?: Array; /** * * @type {CreateTagRemoveActivity201ResponseStatus} * @memberof ActivityTagging */ 'status'?: CreateTagRemoveActivity201ResponseStatus; /** * * @type {CreateTagRemoveActivity201ResponseLinks} * @memberof ActivityTagging */ '_links'?: CreateTagRemoveActivity201ResponseLinks; }