/* 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 TaskClaimProps */ export interface TaskClaimProps { /** * * @type {string} * @memberof TaskClaimProps */ code?: string; } /** * Check if a given object implements the TaskClaimProps interface. */ export function instanceOfTaskClaimProps(value: object): boolean { let isInstance = true; return isInstance; } export function TaskClaimPropsFromJSON(json: any): TaskClaimProps { return TaskClaimPropsFromJSONTyped(json, false); } export function TaskClaimPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskClaimProps { if ((json === undefined) || (json === null)) { return json; } return { 'code': !exists(json, 'code') ? undefined : json['code'], }; } export function TaskClaimPropsToJSON(value?: TaskClaimProps | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'code': value.code, }; }