/** * 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. */ /** * * @export * @interface WorkflowIssue */ export interface WorkflowIssue { /** * * @type {string} * @memberof WorkflowIssue */ message?: string; /** * * @type {string} * @memberof WorkflowIssue */ severity?: string; /** * * @type {string} * @memberof WorkflowIssue */ stepId?: string; /** * * @type {string} * @memberof WorkflowIssue */ stepType?: string; } /** * Check if a given object implements the WorkflowIssue interface. */ export declare function instanceOfWorkflowIssue(value: object): value is WorkflowIssue; export declare function WorkflowIssueFromJSON(json: any): WorkflowIssue; export declare function WorkflowIssueFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowIssue; export declare function WorkflowIssueToJSON(json: any): WorkflowIssue; export declare function WorkflowIssueToJSONTyped(value?: WorkflowIssue | null, ignoreDiscriminator?: boolean): any;