/** * 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 GroupSecret */ export interface GroupSecret { /** * * @type {string} * @memberof GroupSecret */ id?: string; /** * * @type {string} * @memberof GroupSecret */ group_id?: string; /** * * @type {string} * @memberof GroupSecret */ uuid?: string; /** * * @type {Secret} * @memberof GroupSecret */ secret?: Secret; } export declare function GroupSecretFromJSON(json: any): GroupSecret; export declare function GroupSecretFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupSecret; export declare function GroupSecretToJSON(value?: GroupSecret | null): any;