/** * NymOS Playground apis 1.0.0 * * The contents of this file are subject to the NymOS License, version 1.0. * It is forbidden the use of the codes included on this file, even partially, * for third parties, such as its copy, without express authorization of the * intelectual property and commercial rights owners. A copy of the license * may be obtained at http://nymos.io/source-license. The intelectual * property and comercial rights of this file and codes belong to NymOS S.A. * * Copyright (c) 2017. All rights reserved. * */ import { AccountKycLevel } from './account-kyc-level.model'; import { Address } from './address.model'; export interface DataTypes { localizedHello?: string; stringType?: string; /** * signed 32 bits */ integerType?: number; /** * signed 64 bits */ longType?: number; floatType?: number; doubleType?: number; booleanType?: boolean; dateType?: Date; dateTimeType?: Date; enumType?: AccountKycLevel; modelType?: Address; bigDecimalType?: number; stringListType?: Array; modelListType?: Array
; }