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