/** * 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 { WorkflowDto } from './WorkflowDto'; import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface WorkflowsDto */ export interface WorkflowsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof WorkflowsDto */ links: { [key: string]: ResourceLink; }; /** * The workflow. * @type {Array} * @memberof WorkflowsDto */ items: Array; /** * The errros that should be fixed. * @type {Array} * @memberof WorkflowsDto */ errors: Array; } /** * Check if a given object implements the WorkflowsDto interface. */ export declare function instanceOfWorkflowsDto(value: any): value is WorkflowsDto; export declare function WorkflowsDtoFromJSON(json: any): WorkflowsDto; export declare function WorkflowsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): WorkflowsDto; export declare function WorkflowsDtoToJSON(value?: WorkflowsDto | null, _ignoreDiscriminator?: boolean): any;