/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.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 * @interface RunRelationshipsSchema1WorkflowData */ export interface RunRelationshipsSchema1WorkflowData { /** * * @type {RunRelationshipsSchema1WorkflowDataTypeEnum} * @memberof RunRelationshipsSchema1WorkflowData */ type: RunRelationshipsSchema1WorkflowDataTypeEnum; /** * The workflow ID to run. * @type {string} * @memberof RunRelationshipsSchema1WorkflowData */ id: string; } /** * @export */ export declare const RunRelationshipsSchema1WorkflowDataTypeEnum: { readonly Workflows: "workflows"; }; export type RunRelationshipsSchema1WorkflowDataTypeEnum = typeof RunRelationshipsSchema1WorkflowDataTypeEnum[keyof typeof RunRelationshipsSchema1WorkflowDataTypeEnum]; /** * Check if a given object implements the RunRelationshipsSchema1WorkflowData interface. */ export declare function instanceOfRunRelationshipsSchema1WorkflowData(value: object): value is RunRelationshipsSchema1WorkflowData; export declare function RunRelationshipsSchema1WorkflowDataFromJSON(json: any): RunRelationshipsSchema1WorkflowData; export declare function RunRelationshipsSchema1WorkflowDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunRelationshipsSchema1WorkflowData; export declare function RunRelationshipsSchema1WorkflowDataToJSON(json: any): RunRelationshipsSchema1WorkflowData; export declare function RunRelationshipsSchema1WorkflowDataToJSONTyped(value?: RunRelationshipsSchema1WorkflowData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RunRelationshipsSchema1WorkflowData.d.ts.map