/** * 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 { Padding } from './padding'; import { SpinToWinSliceStyle } from './spinToWinSliceStyle'; import { TextStyleV0 } from './textStyleV0'; export class SpinToWinStyles { 'padding'?: Padding; 'backgroundColor'?: string | null; 'sliceStyles'?: Array; 'textStyles'?: TextStyleV0; 'centerColor'?: string = 'rgba(255,255,255,1)'; 'outlineColor'?: string = 'rgba(0,0,0,1)'; 'outlineThickness'?: number = 12; 'pinColor'?: string = 'rgba(255,255,255,1)'; 'wheelSize'?: number = 400; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "padding", "baseName": "padding", "type": "Padding" }, { "name": "backgroundColor", "baseName": "background_color", "type": "string" }, { "name": "sliceStyles", "baseName": "slice_styles", "type": "Array" }, { "name": "textStyles", "baseName": "text_styles", "type": "TextStyleV0" }, { "name": "centerColor", "baseName": "center_color", "type": "string" }, { "name": "outlineColor", "baseName": "outline_color", "type": "string" }, { "name": "outlineThickness", "baseName": "outline_thickness", "type": "number" }, { "name": "pinColor", "baseName": "pin_color", "type": "string" }, { "name": "wheelSize", "baseName": "wheel_size", "type": "number" } ]; static getAttributeTypeMap() { return SpinToWinStyles.attributeTypeMap; } }