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