/** * 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 { SMSConsentCheckboxProperties } from './sMSConsentCheckboxProperties'; import { SMSConsentCheckboxStyles } from './sMSConsentCheckboxStyles'; export class SMSConsentCheckbox { /** * Not allowed on create. */ 'id'?: string | null; 'type': SMSConsentCheckbox.TypeEnum | 'promotional_sms_checkbox'; 'styles'?: SMSConsentCheckboxStyles; 'properties': SMSConsentCheckboxProperties; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "type", "baseName": "type", "type": "SMSConsentCheckbox.TypeEnum" }, { "name": "styles", "baseName": "styles", "type": "SMSConsentCheckboxStyles" }, { "name": "properties", "baseName": "properties", "type": "SMSConsentCheckboxProperties" } ]; static getAttributeTypeMap() { return SMSConsentCheckbox.attributeTypeMap; } } export namespace SMSConsentCheckbox { export enum TypeEnum { PromotionalSmsCheckbox = 'promotional_sms_checkbox' } }