/** * 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 RespGroupSecretAllOf */ export interface RespGroupSecretAllOf { /** * * @type {GroupSecret} * @memberof RespGroupSecretAllOf */ result?: GroupSecret; } export declare function RespGroupSecretAllOfFromJSON(json: any): RespGroupSecretAllOf; export declare function RespGroupSecretAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): RespGroupSecretAllOf; export declare function RespGroupSecretAllOfToJSON(value?: RespGroupSecretAllOf | null): any;