/** * 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. */ export declare class BaseStyleStyles { 'backgroundAssetId'?: string | null; /** * Background format. */ 'backgroundFormat'?: BaseStyleStyles.BackgroundFormatEnum | 'auto' | 'contain' | 'cover' | 'initial' | 'repeat' | null; /** * Background position. */ 'backgroundPosition'?: BaseStyleStyles.BackgroundPositionEnum | 'center-bottom' | 'center-center' | 'center-top' | 'left-bottom' | 'left-center' | 'left-top' | 'right-bottom' | 'right-center' | 'right-top' | null; 'backgroundRepeat'?: boolean | null; 'backgroundUrl'?: string | null; 'borderColor'?: string | null; 'borderRadius'?: number | null; /** * Border style. */ 'borderStyle'?: BaseStyleStyles.BorderStyleEnum | 'dashed' | 'dotted' | 'groove' | 'inset' | 'none' | 'outset' | 'ridge' | 'solid' | null; 'borderWidth'?: number | null; 'contentBackgroundColor'?: string | null; 'innerPaddingBottom'?: number | null; 'innerPaddingLeft'?: number | null; 'innerPaddingRight'?: number | null; 'innerPaddingTop'?: number | null; 'marginTop'?: number | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace BaseStyleStyles { enum BackgroundFormatEnum { Auto, Contain, Cover, Initial, Repeat } enum BackgroundPositionEnum { CenterBottom, CenterCenter, CenterTop, LeftBottom, LeftCenter, LeftTop, RightBottom, RightCenter, RightTop } enum BorderStyleEnum { Dashed, Dotted, Groove, Inset, None, Outset, Ridge, Solid } }