/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { WorkflowIssue } from './WorkflowIssue'; /** * * @export * @interface ValidateWorkflowResponse */ export interface ValidateWorkflowResponse { /** * * @type {Array} * @memberof ValidateWorkflowResponse */ issues?: Array; } /** * Check if a given object implements the ValidateWorkflowResponse interface. */ export declare function instanceOfValidateWorkflowResponse(value: object): value is ValidateWorkflowResponse; export declare function ValidateWorkflowResponseFromJSON(json: any): ValidateWorkflowResponse; export declare function ValidateWorkflowResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateWorkflowResponse; export declare function ValidateWorkflowResponseToJSON(json: any): ValidateWorkflowResponse; export declare function ValidateWorkflowResponseToJSONTyped(value?: ValidateWorkflowResponse | null, ignoreDiscriminator?: boolean): any;