/** * 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. */ export declare class FlowResponseObjectResourceAttributes { 'name'?: string | null; 'status'?: string | null; 'archived'?: boolean | null; 'created'?: Date | null; 'updated'?: Date | null; /** * Corresponds to the object which triggered the flow. */ 'triggerType'?: FlowResponseObjectResourceAttributes.TriggerTypeEnum | 'Added to List' | 'Date Based' | 'Low Inventory' | 'Metric' | 'Price Drop' | 'Unconfigured' | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace FlowResponseObjectResourceAttributes { enum TriggerTypeEnum { AddedToList, DateBased, LowInventory, Metric, PriceDrop, Unconfigured } }