/** * 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 { EnumIdentityType } from './'; /** * * @export * @interface ReqBaseIdentity */ export interface ReqBaseIdentity { /** * * @type {string} * @memberof ReqBaseIdentity */ name?: string; /** * * @type {string} * @memberof ReqBaseIdentity */ description?: string; /** * * @type {EnumIdentityType} * @memberof ReqBaseIdentity */ type: EnumIdentityType; } export declare function ReqBaseIdentityFromJSON(json: any): ReqBaseIdentity; export declare function ReqBaseIdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqBaseIdentity; export declare function ReqBaseIdentityToJSON(value?: ReqBaseIdentity | null): any;