/** * 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 { ResourceLink } from './ResourceLink'; import type { WorkflowStepDto } from './WorkflowStepDto'; /** * * @export * @interface WorkflowDto */ export interface WorkflowDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof WorkflowDto */ links: { [key: string]: ResourceLink; }; /** * The workflow id. * @type {string} * @memberof WorkflowDto */ id: string; /** * The name of the workflow. * @type {string} * @memberof WorkflowDto */ name?: string | null; /** * The workflow steps. * @type {{ [key: string]: WorkflowStepDto; }} * @memberof WorkflowDto */ steps: { [key: string]: WorkflowStepDto; }; /** * The schema ids. * @type {Array} * @memberof WorkflowDto */ schemaIds?: Array | null; /** * The initial step. * @type {string} * @memberof WorkflowDto */ initial: string; } /** * Check if a given object implements the WorkflowDto interface. */ export declare function instanceOfWorkflowDto(value: any): value is WorkflowDto; export declare function WorkflowDtoFromJSON(json: any): WorkflowDto; export declare function WorkflowDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): WorkflowDto; export declare function WorkflowDtoToJSON(value?: WorkflowDto | null, _ignoreDiscriminator?: boolean): any;