/** * 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 ReqGroupUser */ export interface ReqGroupUser { /** * * @type {string} * @memberof ReqGroupUser */ username: string; /** * * @type {boolean} * @memberof ReqGroupUser */ is_admin?: boolean; } export declare function ReqGroupUserFromJSON(json: any): ReqGroupUser; export declare function ReqGroupUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGroupUser; export declare function ReqGroupUserToJSON(value?: ReqGroupUser | null): any;