/** * 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 { CheckboxesProperties } from './checkboxesProperties'; import { CheckboxesStyles } from './checkboxesStyles'; export class Checkboxes { /** * Not allowed on create. */ 'id'?: string | null; 'type': Checkboxes.TypeEnum | 'checkboxes'; 'styles'?: CheckboxesStyles; 'properties': CheckboxesProperties; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "type", "baseName": "type", "type": "Checkboxes.TypeEnum" }, { "name": "styles", "baseName": "styles", "type": "CheckboxesStyles" }, { "name": "properties", "baseName": "properties", "type": "CheckboxesProperties" } ]; static getAttributeTypeMap() { return Checkboxes.attributeTypeMap; } } export namespace Checkboxes { export enum TypeEnum { Checkboxes = 'checkboxes' } }