/* 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 CreateResendEmailCampaignRequest */ export interface CreateResendEmailCampaignRequest { /** * The subject line used when resending the email campaign activity. * @type {string} * @memberof CreateResendEmailCampaignRequest */ 'resend_subject': string; /** * The number of days to wait before Constant Contact resends the email. Valid values include 1 to 10 days. This property is mutually exclusive with delay_minutes. 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 CreateResendEmailCampaignRequest */ 'delay_days'?: number; /** * The number of minutes to wait before Constant Contact resends the email campaign activity. 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 CreateResendEmailCampaignRequest */ 'delay_minutes'?: number; }