/** * 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 RichTextMargin { 'left'?: RichTextMargin.LeftEnum | 0 = RichTextMargin.LeftEnum.NUMBER_0; 'right'?: RichTextMargin.RightEnum | 0 = RichTextMargin.RightEnum.NUMBER_0; 'top'?: RichTextMargin.TopEnum | 0 = RichTextMargin.TopEnum.NUMBER_0; 'bottom'?: number = 0; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "left", "baseName": "left", "type": "RichTextMargin.LeftEnum" }, { "name": "right", "baseName": "right", "type": "RichTextMargin.RightEnum" }, { "name": "top", "baseName": "top", "type": "RichTextMargin.TopEnum" }, { "name": "bottom", "baseName": "bottom", "type": "number" } ]; static getAttributeTypeMap() { return RichTextMargin.attributeTypeMap; } } export namespace RichTextMargin { export enum LeftEnum { NUMBER_0 = 0 } export enum RightEnum { NUMBER_0 = 0 } export enum TopEnum { NUMBER_0 = 0 } }