/** * 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 { RequestFile } from './models'; import { LinkStyles } from './linkStyles'; import { RichTextStyle } from './richTextStyle'; export class RichTextStyles { 'body'?: RichTextStyle; 'link'?: LinkStyles; 'h1'?: RichTextStyle; 'h2'?: RichTextStyle; 'h3'?: RichTextStyle; 'h4'?: RichTextStyle; 'h5'?: RichTextStyle; 'h6'?: RichTextStyle; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "body", "baseName": "body", "type": "RichTextStyle" }, { "name": "link", "baseName": "link", "type": "LinkStyles" }, { "name": "h1", "baseName": "h1", "type": "RichTextStyle" }, { "name": "h2", "baseName": "h2", "type": "RichTextStyle" }, { "name": "h3", "baseName": "h3", "type": "RichTextStyle" }, { "name": "h4", "baseName": "h4", "type": "RichTextStyle" }, { "name": "h5", "baseName": "h5", "type": "RichTextStyle" }, { "name": "h6", "baseName": "h6", "type": "RichTextStyle" } ]; static getAttributeTypeMap() { return RichTextStyles.attributeTypeMap; } }