/** * 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'; export class SMSDisclosureCustom { 'type': SMSDisclosureCustom.TypeEnum | 'custom'; 'complianceCompanyName'?: string = '[company name]'; 'privacyPolicyUrl'?: string = '[link]'; 'termsOfServiceUrl'?: string = '[link]'; 'html'?: string = ''; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "type", "type": "SMSDisclosureCustom.TypeEnum" }, { "name": "complianceCompanyName", "baseName": "compliance_company_name", "type": "string" }, { "name": "privacyPolicyUrl", "baseName": "privacy_policy_url", "type": "string" }, { "name": "termsOfServiceUrl", "baseName": "terms_of_service_url", "type": "string" }, { "name": "html", "baseName": "html", "type": "string" } ]; static getAttributeTypeMap() { return SMSDisclosureCustom.attributeTypeMap; } } export namespace SMSDisclosureCustom { export enum TypeEnum { Custom = 'custom' } }