/** * 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. */ /** * * @export * @interface RespPipelineLockAcquisitionAllOfResult */ export interface RespPipelineLockAcquisitionAllOfResult { /** * * @type {string} * @memberof RespPipelineLockAcquisitionAllOfResult */ pipeline_lock_uuid?: string; /** * * @type {boolean} * @memberof RespPipelineLockAcquisitionAllOfResult */ acquired?: boolean; /** * * @type {string} * @memberof RespPipelineLockAcquisitionAllOfResult */ message?: string; } export declare function RespPipelineLockAcquisitionAllOfResultFromJSON(json: any): RespPipelineLockAcquisitionAllOfResult; export declare function RespPipelineLockAcquisitionAllOfResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespPipelineLockAcquisitionAllOfResult; export declare function RespPipelineLockAcquisitionAllOfResultToJSON(value?: RespPipelineLockAcquisitionAllOfResult | null): any;