/** * 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 PipelineLock */ export interface PipelineLock { /** * * @type {string} * @memberof PipelineLock */ uuid?: string; /** * * @type {string} * @memberof PipelineLock */ pipeline_id?: string; /** * * @type {string} * @memberof PipelineLock */ pipeline_run_uuid?: string; /** * * @type {string} * @memberof PipelineLock */ created_at?: string; /** * * @type {string} * @memberof PipelineLock */ acquired_at?: string; /** * * @type {number} * @memberof PipelineLock */ expires_in?: number; } export declare function PipelineLockFromJSON(json: any): PipelineLock; export declare function PipelineLockFromJSONTyped(json: any, ignoreDiscriminator: boolean): PipelineLock; export declare function PipelineLockToJSON(value?: PipelineLock | null): any;