/* 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 EmailTestSendInput */ export interface EmailTestSendInput { /** * The recipients of the test email as an array of email address strings. You can send a test email to up to 5 different email addresses at a time. * @type {Array} * @memberof EmailTestSendInput */ 'email_addresses': Array; /** * A personal message for the recipients of the test email. Constant Contact displays this message before the email campaign activity content. * @type {string} * @memberof EmailTestSendInput */ 'personal_message'?: string; }