/** * 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 { TextStyleV0 } from './textStyleV0'; export class InputStyles { 'textStyles'?: TextStyleV0; 'labelColor'?: string = '#303B43'; 'textColor'?: string = '#000000'; 'placeholderColor'?: string = '#949596'; 'backgroundColor'?: string = '#FFFFFF'; 'borderColor'?: string = '#949596'; 'borderFocusColor'?: string = '#000000'; 'focusOutlineColor'?: string = '#1C65AD'; 'cornerRadius'?: number = 2; 'fieldHeight'?: number = 38; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "textStyles", "baseName": "text_styles", "type": "TextStyleV0" }, { "name": "labelColor", "baseName": "label_color", "type": "string" }, { "name": "textColor", "baseName": "text_color", "type": "string" }, { "name": "placeholderColor", "baseName": "placeholder_color", "type": "string" }, { "name": "backgroundColor", "baseName": "background_color", "type": "string" }, { "name": "borderColor", "baseName": "border_color", "type": "string" }, { "name": "borderFocusColor", "baseName": "border_focus_color", "type": "string" }, { "name": "focusOutlineColor", "baseName": "focus_outline_color", "type": "string" }, { "name": "cornerRadius", "baseName": "corner_radius", "type": "number" }, { "name": "fieldHeight", "baseName": "field_height", "type": "number" } ]; static getAttributeTypeMap() { return InputStyles.attributeTypeMap; } }