You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
namespace Binance.TradeRobot.Model.Dto
|
|
|
|
{
|
|
|
|
public class ExchangeAPIKeyResponse : Db.ExchangeAPIKey
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 基础币金额(标的数量)
|
|
|
|
/// </summary>
|
|
|
|
public decimal BaseAmount { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 报价币金额(USDT)(可转资金)
|
|
|
|
/// </summary>
|
|
|
|
public decimal QuoteAmount { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 报价币借款金额(USDT)
|
|
|
|
/// </summary>
|
|
|
|
public decimal QuoteLoanAmount { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 报价币净资产(USDT)(不含借款)
|
|
|
|
/// </summary>
|
|
|
|
public decimal QuoteNetAmount { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 关联机器人的交易对
|
|
|
|
/// </summary>
|
|
|
|
public string RobotSymbol { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SimpleExchangeAPIKeyResponse
|
|
|
|
{
|
|
|
|
public long AccountId { get; set; }
|
|
|
|
public string APIKey { get; set; }
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
}
|
|
|
|
}
|