/** * 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 AutoLayoutWorkflowResponse */ export interface AutoLayoutWorkflowResponse { /** * * @type {number} * @memberof AutoLayoutWorkflowResponse */ stepsRepositioned?: number; } /** * Check if a given object implements the AutoLayoutWorkflowResponse interface. */ export declare function instanceOfAutoLayoutWorkflowResponse(value: object): value is AutoLayoutWorkflowResponse; export declare function AutoLayoutWorkflowResponseFromJSON(json: any): AutoLayoutWorkflowResponse; export declare function AutoLayoutWorkflowResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AutoLayoutWorkflowResponse; export declare function AutoLayoutWorkflowResponseToJSON(json: any): AutoLayoutWorkflowResponse; export declare function AutoLayoutWorkflowResponseToJSONTyped(value?: AutoLayoutWorkflowResponse | null, ignoreDiscriminator?: boolean): any;