/** * 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 { ErrorMessages } from './errorMessages'; export declare class AgeGateProperties { 'displayDevice'?: Array | Array<'both' | 'desktop' | 'mobile'>; 'classname'?: string | null; 'label'?: string | null; 'showLabel'?: boolean; 'placeholder'?: string | null; 'errorMessages'?: ErrorMessages; 'propertyName'?: AgeGateProperties.PropertyNameEnum | '$age_gated_date_of_birth'; 'dateFormat'?: string; /** * SMS County Code Enum. */ 'smsCountryCode'?: AgeGateProperties.SmsCountryCodeEnum | 'AT' | 'AU' | 'CH' | 'DE' | 'ES' | 'FR' | 'GB' | 'IE' | 'IT' | 'PT' | 'US'; 'required'?: boolean; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace AgeGateProperties { enum DisplayDeviceEnum { Both, Desktop, Mobile } enum PropertyNameEnum { AgeGatedDateOfBirth } enum SmsCountryCodeEnum { At, Au, Ch, De, Es, Fr, Gb, Ie, It, Pt, Us } }