/** * 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 { TextBlockDataV0 } from './textBlockDataV0'; export class TextBlockV0 { 'contentType': TextBlockV0.ContentTypeEnum | 'block'; 'type': TextBlockV0.TypeEnum | 'text'; 'data': TextBlockDataV0; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "contentType", "baseName": "content_type", "type": "TextBlockV0.ContentTypeEnum" }, { "name": "type", "baseName": "type", "type": "TextBlockV0.TypeEnum" }, { "name": "data", "baseName": "data", "type": "TextBlockDataV0" } ]; static getAttributeTypeMap() { return TextBlockV0.attributeTypeMap; } } export namespace TextBlockV0 { export enum ContentTypeEnum { Block = 'block' } export enum TypeEnum { Text = 'text' } }