/* 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 Value */ export interface Value { } export function ValueFromJSON(json: any): Value { return ValueFromJSONTyped(json, false); } export function ValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Value { return json; } export function ValueToJSON(value?: Value | null): any { return value; }