/** * 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 { FlowEnum } from './flowEnum'; import { FlowResponseObjectResourceRelationships } from './flowResponseObjectResourceRelationships'; import { FlowV2ResponseObjectResourceExtendedAttributes } from './flowV2ResponseObjectResourceExtendedAttributes'; import { ObjectLinks } from './objectLinks'; export declare class FlowV2ResponseObjectResourceExtended { 'type': FlowEnum | 'flow'; 'id': string; 'attributes': FlowV2ResponseObjectResourceExtendedAttributes; 'relationships'?: FlowResponseObjectResourceRelationships; 'links': ObjectLinks; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace FlowV2ResponseObjectResourceExtended { }