/* 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 ReqLocalContextAllOf */ export interface ReqLocalContextAllOf { /** * * @type {string} * @memberof ReqLocalContextAllOf */ filename: string; } export function ReqLocalContextAllOfFromJSON(json: any): ReqLocalContextAllOf { return ReqLocalContextAllOfFromJSONTyped(json, false); } export function ReqLocalContextAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqLocalContextAllOf { if ((json === undefined) || (json === null)) { return json; } return { 'filename': json['filename'], }; } export function ReqLocalContextAllOfToJSON(value?: ReqLocalContextAllOf | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'filename': value.filename, }; }