/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { FlowEmailAdditionalFilters } from './flowEmailAdditionalFilters'; import { UtmParam } from './utmParam'; export declare class FlowEmail { 'fromEmail': string | null; 'fromLabel': string | null; 'replyToEmail': string | null; 'ccEmail': string | null; 'bccEmail': string | null; 'subjectLine': string | null; 'previewText': string | null; 'templateId'?: string | null; 'smartSendingEnabled'?: boolean; 'transactional'?: boolean; 'addTrackingParams'?: boolean; 'customTrackingParams'?: Array | null; 'additionalFilters'?: FlowEmailAdditionalFilters | null; 'name'?: string | null; /** * Not allowed on create. */ 'id'?: string | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }