/** * 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 { Identity } from './'; /** * * @export * @interface RespIdentity */ export interface RespIdentity { /** * * @type {string} * @memberof RespIdentity */ status: string; /** * * @type {string} * @memberof RespIdentity */ message: string; /** * * @type {Identity} * @memberof RespIdentity */ result: Identity; /** * * @type {string} * @memberof RespIdentity */ version: string; /** * * @type {object} * @memberof RespIdentity */ metadata: object; } export declare function RespIdentityFromJSON(json: any): RespIdentity; export declare function RespIdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespIdentity; export declare function RespIdentityToJSON(value?: RespIdentity | null): any;