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