/** * 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'; export class TableFallbackTextSubBlock { 'content'?: string | null; /** * Text Alignment. */ 'cellTextAlign'?: TableFallbackTextSubBlock.CellTextAlignEnum | 'center' | 'left' | 'right' | null; 'color'?: string | null; 'fontFamily'?: string | null; 'fontSize'?: number | null; /** * Font style. */ 'fontStyle'?: TableFallbackTextSubBlock.FontStyleEnum | 'italic' | 'normal' | null; 'fontWeight'?: string | null; 'letterSpacing'?: number | null; /** * Show on. */ 'showOn'?: TableFallbackTextSubBlock.ShowOnEnum | 'all' | 'desktop' | 'mobile' | null; 'tableColumnWidth'?: string | null; 'textDecoration'?: string | null; 'id'?: string | null; 'type': TableFallbackTextSubBlock.TypeEnum | 'table_fallback_text'; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "content", "baseName": "content", "type": "string" }, { "name": "cellTextAlign", "baseName": "cell_text_align", "type": "TableFallbackTextSubBlock.CellTextAlignEnum" }, { "name": "color", "baseName": "color", "type": "string" }, { "name": "fontFamily", "baseName": "font_family", "type": "string" }, { "name": "fontSize", "baseName": "font_size", "type": "number" }, { "name": "fontStyle", "baseName": "font_style", "type": "TableFallbackTextSubBlock.FontStyleEnum" }, { "name": "fontWeight", "baseName": "font_weight", "type": "string" }, { "name": "letterSpacing", "baseName": "letter_spacing", "type": "number" }, { "name": "showOn", "baseName": "show_on", "type": "TableFallbackTextSubBlock.ShowOnEnum" }, { "name": "tableColumnWidth", "baseName": "table_column_width", "type": "string" }, { "name": "textDecoration", "baseName": "text_decoration", "type": "string" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "type", "baseName": "type", "type": "TableFallbackTextSubBlock.TypeEnum" } ]; static getAttributeTypeMap() { return TableFallbackTextSubBlock.attributeTypeMap; } } export namespace TableFallbackTextSubBlock { export enum CellTextAlignEnum { Center = 'center', Left = 'left', Right = 'right' } export enum FontStyleEnum { Italic = 'italic', Normal = 'normal' } export enum ShowOnEnum { All = 'all', Desktop = 'desktop', Mobile = 'mobile' } export enum TypeEnum { TableFallbackText = 'table_fallback_text' } }