-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update based on API update in April 2020
- Loading branch information
Showing
10 changed files
with
171 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
Huobi.SDK.Model/Response/Wallet/GetSubUserDepositHistoryResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
using System; | ||
namespace Huobi.SDK.Model.Response.Wallet | ||
{ | ||
public class GetSubUserDepositHistoryResponse | ||
{ | ||
/// <summary> | ||
/// Status code | ||
/// </summary> | ||
public int code; | ||
|
||
/// <summary> | ||
/// Error message (if any) | ||
/// </summary> | ||
public string message; | ||
|
||
/// <summary> | ||
/// Response body | ||
/// </summary> | ||
public DepositHistory[] data; | ||
|
||
/// <summary> | ||
/// First record in next page (only valid if exceeded page size) | ||
/// </summary> | ||
public long nextId; | ||
|
||
public class DepositHistory | ||
{ | ||
/// <summary> | ||
/// Deposit id | ||
/// </summary> | ||
public long id; | ||
|
||
/// <summary> | ||
/// Cryptocurrency | ||
/// </summary> | ||
public string currency; | ||
|
||
/// <summary> | ||
/// The on-chain transaction hash | ||
/// </summary> | ||
public string txHash; | ||
|
||
/// <summary> | ||
/// Block chain name | ||
/// </summary> | ||
public string chain; | ||
|
||
/// <summary> | ||
/// The number of crypto asset transferred | ||
/// </summary> | ||
public decimal amount; | ||
|
||
/// <summary> | ||
/// The deposit source address | ||
/// </summary> | ||
public string address; | ||
|
||
/// <summary> | ||
/// The deposit source address tag | ||
/// </summary> | ||
public string addressTag; | ||
|
||
/// <summary> | ||
/// The state of this transfer | ||
/// Possible values: unknown, confirming, confirmed, safe, orphan | ||
/// </summary> | ||
public string state; | ||
|
||
/// <summary> | ||
/// The timestamp in milliseconds for the transfer creation | ||
/// </summary> | ||
public long createTime; | ||
|
||
/// <summary> | ||
/// The timestamp in milliseconds for the transfer's latest update | ||
/// </summary> | ||
public long updateTime; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters