Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the ApiDictAsset class.
 /// </summary>
 /// <param name="assetType">Possible values include:
 /// 'Erc20Token'</param>
 /// <param name="blockchain">Possible values include: 'None',
 /// 'Bitcoin', 'Ethereum'</param>
 public ApiDictAsset(string id = default(string), string blockchainId = default(string), string name = default(string), string symbol = default(string), string idIssuer = default(string), int?accuracy = default(int?), bool?hideWithdraw = default(bool?), bool?hideDeposit = default(bool?), int?defaultOrder = default(int?), bool?kycNeeded = default(bool?), string categoryId = default(string), bool?visaDeposit = default(bool?), bool?swiftDeposit = default(bool?), bool?blockchainDeposit = default(bool?), bool?buyScreen = default(bool?), bool?sellScreen = default(bool?), bool?blockchainWithdrawal = default(bool?), bool?swiftWithdrawal = default(bool?), bool?forwardWithdrawal = default(bool?), bool?crosschainWithdrawal = default(bool?), string bcnDepositAddress = default(string), string forwardBaseAsset = default(string), int?forwardFrozenDays = default(int?), string forwardMemoUrl = default(string), string assetType = default(string), string iconUrl = default(string), string displayId = default(string), string blockchain = default(string), AssetDescriptionModel description = default(AssetDescriptionModel))
 {
     Id                   = id;
     BlockchainId         = blockchainId;
     Name                 = name;
     Symbol               = symbol;
     IdIssuer             = idIssuer;
     Accuracy             = accuracy;
     HideWithdraw         = hideWithdraw;
     HideDeposit          = hideDeposit;
     DefaultOrder         = defaultOrder;
     KycNeeded            = kycNeeded;
     CategoryId           = categoryId;
     VisaDeposit          = visaDeposit;
     SwiftDeposit         = swiftDeposit;
     BlockchainDeposit    = blockchainDeposit;
     BuyScreen            = buyScreen;
     SellScreen           = sellScreen;
     BlockchainWithdrawal = blockchainWithdrawal;
     SwiftWithdrawal      = swiftWithdrawal;
     ForwardWithdrawal    = forwardWithdrawal;
     CrosschainWithdrawal = crosschainWithdrawal;
     BcnDepositAddress    = bcnDepositAddress;
     ForwardBaseAsset     = forwardBaseAsset;
     ForwardFrozenDays    = forwardFrozenDays;
     ForwardMemoUrl       = forwardMemoUrl;
     AssetType            = assetType;
     IconUrl              = iconUrl;
     DisplayId            = displayId;
     Blockchain           = blockchain;
     Description          = description;
     CustomInit();
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the
 /// ResponseModelAssetDescriptionModel class.
 /// </summary>
 public ResponseModelAssetDescriptionModel(AssetDescriptionModel result = default(AssetDescriptionModel), ErrorModel error = default(ErrorModel))
 {
     Result = result;
     Error  = error;
     CustomInit();
 }