/** * 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 { FormVersionABTest } from './formVersionABTest'; export declare class FormVersionResponseObjectResourceAttributes { /** * The type of form. */ 'formType': FormVersionResponseObjectResourceAttributes.FormTypeEnum | 'banner' | 'embed' | 'flyout' | 'full_page' | 'popup'; /** * The name of the form version. */ 'variationName': string; 'abTest'?: FormVersionABTest; /** * Status of the form version. \"live\" means it\'s live on site. */ 'status': FormVersionResponseObjectResourceAttributes.StatusEnum | 'draft' | 'live'; /** * ISO8601 timestamp when the form version was created. */ 'createdAt': Date; /** * ISO8601 timestamp when the form version was last updated. */ 'updatedAt': Date; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace FormVersionResponseObjectResourceAttributes { enum FormTypeEnum { Banner, Embed, Flyout, FullPage, Popup } enum StatusEnum { Draft, Live } }