/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PipelineLock } from './'; /** * * @export * @interface RespPipelineLock */ export interface RespPipelineLock { /** * * @type {string} * @memberof RespPipelineLock */ status: string; /** * * @type {string} * @memberof RespPipelineLock */ message: string; /** * * @type {PipelineLock} * @memberof RespPipelineLock */ result: PipelineLock; /** * * @type {string} * @memberof RespPipelineLock */ version: string; /** * * @type {object} * @memberof RespPipelineLock */ metadata: object; } export declare function RespPipelineLockFromJSON(json: any): RespPipelineLock; export declare function RespPipelineLockFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespPipelineLock; export declare function RespPipelineLockToJSON(value?: RespPipelineLock | null): any;