/** * 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 Group */ export interface Group { /** * * @type {string} * @memberof Group */ id?: string; /** * * @type {string} * @memberof Group */ owner?: string; /** * * @type {string} * @memberof Group */ tenant_id?: string; /** * * @type {string} * @memberof Group */ uuid?: string; } export declare function GroupFromJSON(json: any): Group; export declare function GroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Group; export declare function GroupToJSON(value?: Group | null): any;