/** * 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 { FlowDefinitionActionsInner } from './flowDefinitionActionsInner'; import { FlowDefinitionProfileFilter } from './flowDefinitionProfileFilter'; import { FlowDefinitionTriggersInner } from './flowDefinitionTriggersInner'; import { ReentryCriteria } from './reentryCriteria'; export declare class FlowDefinition { /** * Corresponds to the object which triggers the flow. Only one trigger is supported. */ 'triggers': Array; 'profileFilter'?: FlowDefinitionProfileFilter | null; /** * A list of actions that make up the flow. Actions are linked to each other by their ids. */ 'actions': Array; /** * The ID of the action that is the entry point of the flow. */ 'entryActionId': string | null; 'reentryCriteria'?: ReentryCriteria; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }