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