/** * 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 RespBase */ export interface RespBase { /** * * @type {string} * @memberof RespBase */ status: string; /** * * @type {string} * @memberof RespBase */ message: string; /** * * @type {object} * @memberof RespBase */ result: object; /** * * @type {string} * @memberof RespBase */ version: string; /** * * @type {object} * @memberof RespBase */ metadata: object; } export declare function RespBaseFromJSON(json: any): RespBase; export declare function RespBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespBase; export declare function RespBaseToJSON(value?: RespBase | null): any;