/** * 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 Identity */ export interface Identity { /** * * @type {string} * @memberof Identity */ type?: string; /** * * @type {string} * @memberof Identity */ name?: string; /** * * @type {string} * @memberof Identity */ description?: string; /** * * @type {string} * @memberof Identity */ owner?: string; /** * * @type {string} * @memberof Identity */ tenant_id?: string; /** * * @type {string} * @memberof Identity */ uuid?: string; /** * * @type {string} * @memberof Identity */ credentials?: string; } export declare function IdentityFromJSON(json: any): Identity; export declare function IdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): Identity; export declare function IdentityToJSON(value?: Identity | null): any;