/** * 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 { FlowSmsAdditionalFilters } from './flowSmsAdditionalFilters'; import { UtmParam } from './utmParam'; export declare class FlowSms { 'body': string; /** * The id of an ImageAsset. If provided, this will take precedence over a dynamic_image. */ 'imageId'?: string | null; /** * A dynamic image asset to include in the SMS message. */ 'dynamicImage'?: string | null; 'shortenLinks'?: boolean; 'includeContactCard'?: boolean; 'addOrgPrefix'?: boolean; 'addInfoLink'?: boolean; 'addOptOutLanguage'?: boolean; 'smartSendingEnabled'?: boolean; 'smsQuietHoursEnabled'?: boolean; 'transactional'?: boolean; 'addTrackingParams'?: boolean; 'customTrackingParams'?: Array | null; 'templateId'?: string | null; 'additionalFilters'?: FlowSmsAdditionalFilters | 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; }[]; }