/* tslint:disable */ /* eslint-disable */ /** * 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 { exists, mapValues } from '../runtime'; /** * * @export * @interface ReqUpdateGroupUser */ export interface ReqUpdateGroupUser { /** * * @type {boolean} * @memberof ReqUpdateGroupUser */ is_admin: boolean; } export function ReqUpdateGroupUserFromJSON(json: any): ReqUpdateGroupUser { return ReqUpdateGroupUserFromJSONTyped(json, false); } export function ReqUpdateGroupUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqUpdateGroupUser { if ((json === undefined) || (json === null)) { return json; } return { 'is_admin': json['is_admin'], }; } export function ReqUpdateGroupUserToJSON(value?: ReqUpdateGroupUser | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'is_admin': value.is_admin, }; }