/** * 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 { AgeGateProperties } from './ageGateProperties'; import { AgeGateStyles } from './ageGateStyles'; export declare class AgeGate { /** * Not allowed on create. */ 'id'?: string | null; 'type': AgeGate.TypeEnum | 'age_gate'; 'styles'?: AgeGateStyles; 'properties': AgeGateProperties; 'displayDevice'?: Array | Array<'both' | 'desktop' | 'mobile'>; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace AgeGate { enum TypeEnum { AgeGate } enum DisplayDeviceEnum { Both, Desktop, Mobile } }