/** * 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 { RequestFile } from './models'; import { FlowActionEnum } from './flowActionEnum'; import { FlowActionUpdateQueryResourceObjectAttributes } from './flowActionUpdateQueryResourceObjectAttributes'; export class FlowActionUpdateQueryResourceObject { 'type': FlowActionEnum | 'flow-action'; 'id': string; 'attributes': FlowActionUpdateQueryResourceObjectAttributes; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "type", "type": "FlowActionEnum" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "attributes", "baseName": "attributes", "type": "FlowActionUpdateQueryResourceObjectAttributes" } ]; static getAttributeTypeMap() { return FlowActionUpdateQueryResourceObject.attributeTypeMap; } } export namespace FlowActionUpdateQueryResourceObject { }