/* tslint:disable */ /* eslint-disable */ /** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * 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 TaskCheckProps */ export interface TaskCheckProps { /** * * @type {string} * @memberof TaskCheckProps */ code?: string; } /** * Check if a given object implements the TaskCheckProps interface. */ export function instanceOfTaskCheckProps(value: object): boolean { let isInstance = true; return isInstance; } export function TaskCheckPropsFromJSON(json: any): TaskCheckProps { return TaskCheckPropsFromJSONTyped(json, false); } export function TaskCheckPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskCheckProps { if ((json === undefined) || (json === null)) { return json; } return { 'code': !exists(json, 'code') ? undefined : json['code'], }; } export function TaskCheckPropsToJSON(value?: TaskCheckProps | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'code': value.code, }; }