/** * 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. */ /** * * @export * @interface AddWorkflowDto */ export interface AddWorkflowDto { /** * The name of the workflow. * @type {string} * @memberof AddWorkflowDto */ name: string; } /** * Check if a given object implements the AddWorkflowDto interface. */ export declare function instanceOfAddWorkflowDto(value: any): value is AddWorkflowDto; export declare function AddWorkflowDtoFromJSON(json: any): AddWorkflowDto; export declare function AddWorkflowDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AddWorkflowDto; export declare function AddWorkflowDtoToJSON(value?: AddWorkflowDto | null, _ignoreDiscriminator?: boolean): any;