/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { WorkflowStepDto } from './WorkflowStepDto'; /** * * @export * @interface UpdateWorkflowDto */ export interface UpdateWorkflowDto { /** * The name of the workflow. * @type {string} * @memberof UpdateWorkflowDto */ name?: string | null; /** * The workflow steps. * @type {{ [key: string]: WorkflowStepDto; }} * @memberof UpdateWorkflowDto */ steps: { [key: string]: WorkflowStepDto; }; /** * The schema ids. * @type {Array} * @memberof UpdateWorkflowDto */ schemaIds?: Array | null; /** * The initial step. * @type {string} * @memberof UpdateWorkflowDto */ initial: string; } /** * Check if a given object implements the UpdateWorkflowDto interface. */ export declare function instanceOfUpdateWorkflowDto(value: any): value is UpdateWorkflowDto; export declare function UpdateWorkflowDtoFromJSON(json: any): UpdateWorkflowDto; export declare function UpdateWorkflowDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateWorkflowDto; export declare function UpdateWorkflowDtoToJSON(value?: UpdateWorkflowDto | null, _ignoreDiscriminator?: boolean): any;