/* 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. */ // May contain unused imports in some cases // @ts-ignore import { CreateEmailCampaignRequestEmailCampaignActivitiesInnerPhysicalAddressInFooter } from './create-email-campaign-request-email-campaign-activities-inner-physical-address-in-footer'; /** * * @export * @interface EmailCampaignActivityInput */ export interface EmailCampaignActivityInput { /** * The email format you are using to create the email campaign activity. The V3 API supports creating emails using format_type 5 (custom code emails). * @type {number} * @memberof EmailCampaignActivityInput */ 'format_type': number; /** * The email sender\'s name to display for the email campaign activity. * @type {string} * @memberof EmailCampaignActivityInput */ 'from_name': string; /** * The sender\'s email address to use for the email campaign activity. You must use a confirmed Constant Contact account email address. Make a GET call to /account/emails to return a collection of account emails and their confirmation status. * @type {string} * @memberof EmailCampaignActivityInput */ 'from_email': string; /** * The sender\'s email address to use if the contact replies to the email campaign activity. You must use a confirmed Constant Contact account email address. Make a GET call to /account/emails to return a collection of account emails and their confirmation status. * @type {string} * @memberof EmailCampaignActivityInput */ 'reply_to_email': string; /** * The text to display in the subject line that describes the email campaign activity. * @type {string} * @memberof EmailCampaignActivityInput */ 'subject': string; /** * The email preheader for the email campaign activity. Contacts will view your preheader as a short summary that follows the subject line in their email client. Only format_type 3, 4, and 5 email campaign activities use the preheader property. * @type {string} * @memberof EmailCampaignActivityInput */ 'preheader'?: string; /** * The HTML content for the email campaign activity. Only format_type 5 (custom code emails) can contain html_content. When creating a format_type 5 custom code email, make sure that you include [[trackingImage]] in the <body> element of your HTML. * @type {string} * @memberof EmailCampaignActivityInput */ 'html_content': string; /** * * @type {CreateEmailCampaignRequestEmailCampaignActivitiesInnerPhysicalAddressInFooter} * @memberof EmailCampaignActivityInput */ 'physical_address_in_footer'?: CreateEmailCampaignRequestEmailCampaignActivitiesInnerPhysicalAddressInFooter; }