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