/** * 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 GroupUser */ export interface GroupUser { /** * * @type {string} * @memberof GroupUser */ group?: string; /** * * @type {string} * @memberof GroupUser */ username?: string; /** * * @type {boolean} * @memberof GroupUser */ is_admin?: boolean; /** * * @type {string} * @memberof GroupUser */ uuid?: string; } export declare function GroupUserFromJSON(json: any): GroupUser; export declare function GroupUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupUser; export declare function GroupUserToJSON(value?: GroupUser | null): any;