/* 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 EmailCampaigns */ export interface EmailCampaigns { /** * The unique ID used to identify the email campaign (UUID format). * @type {string} * @memberof EmailCampaigns */ 'campaign_id'?: string; /** * The system generated date and time that this email campaign was created. This string is readonly and is in ISO-8601 format. * @type {string} * @memberof EmailCampaigns */ 'created_at'?: string; /** * The current status of the email campaign. Valid values are: * @type {string} * @memberof EmailCampaigns */ 'current_status'?: string; /** * The descriptive name the user provides to identify this campaign. Campaign names must be unique for each account ID. * @type {string} * @memberof EmailCampaigns */ 'name'?: string; /** * Identifies the type of campaign that you select when creating the campaign. Newsletter and Custom Code email campaigns are the primary types. * @type {string} * @memberof EmailCampaigns */ 'type'?: string; /** * The code used to identify the email campaign `type`. * @type {number} * @memberof EmailCampaigns */ 'type_code'?: number; /** * The system generated date and time showing when the campaign was last updated. This string is read only and is in ISO-8601 format. * @type {string} * @memberof EmailCampaigns */ 'updated_at'?: string; }