/** * 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 { Margin } from './margin'; export class CloseButtonStyle { 'backgroundColor'?: string = 'rgba(180, 187, 195, 0.65)'; 'outlineColor'?: string = '#FFFFFF'; 'color'?: string = '#FFFFFF'; 'stroke'?: number = 2; 'size'?: number = 20; 'margin'?: Margin; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "backgroundColor", "baseName": "background_color", "type": "string" }, { "name": "outlineColor", "baseName": "outline_color", "type": "string" }, { "name": "color", "baseName": "color", "type": "string" }, { "name": "stroke", "baseName": "stroke", "type": "number" }, { "name": "size", "baseName": "size", "type": "number" }, { "name": "margin", "baseName": "margin", "type": "Margin" } ]; static getAttributeTypeMap() { return CloseButtonStyle.attributeTypeMap; } }