/* 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 GetResendEmailCampaign200ResponseInner
*/
export interface GetResendEmailCampaign200ResponseInner {
/**
* The subject line used when resending the email campaign activity.
* @type {string}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'resend_subject'?: string;
/**
* The number of days to wait before Constant Contact resends the email. Valid values include 1 to 10 days. This value is only returned in the response results if the resend activity was created with delay_days or the delay_minutes equal to an exact day value.
* @type {number}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'delay_days'?: number;
/**
* The number of minutes to wait before Constant Contact resends the email. There are 1,440 minutes in a day. Valid values includes a minimum of 720 (12 hours) and a maximum of 14,400 minutes (10 days). This property is mutually exclusive with delay_days.
* @type {number}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'delay_minutes'?: number;
/**
* The system generated date and time (in ISO-8601 format) that the email campaign activity was resent to non-openers (only included in the response results for sent resend activities).
* @type {string}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'resend_date'?: string;
/**
* For scheduled or sent resend to non-opener emails, the system generates an ID that identifies the resend to non-openers activity. For draft email campaign resend activities, the system returns DRAFT.
* @type {string}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'resend_request_id'?: string;
/**
* The status of the resend to non-openers campaign activity. The resend_status is only returned in the response results if the campaign activity is either scheduled to be sent or was already sent.
* @type {string}
* @memberof GetResendEmailCampaign200ResponseInner
*/
'resend_status'?: string;
}