/* 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 AccountEmailCreateResponse */ export interface AccountEmailCreateResponse { /** * An email address associated with a Constant Contact account owner. * @type {string} * @memberof AccountEmailCreateResponse */ 'email_address'?: string; /** * The unique ID for an email address in a Constant Contact account. * @type {number} * @memberof AccountEmailCreateResponse */ 'email_id'?: number; /** * The confirmation status of the account email address. When you add a new email address to an account, Constant Contact automatically sends an email to that address with a link to confirm it. You can use any account email address with a CONFIRMED status to create an email campaign. * @type {string} * @memberof AccountEmailCreateResponse */ 'confirm_status'?: string; }