Skip to content

Commit

Permalink
fix: coineal trade result field correction due to API Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
traeper committed Jul 5, 2019
1 parent 417619a commit 1eceff4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ data class CoinealTradeResult(
val volume: BigDecimal,
@JsonProperty("price")
val price: BigDecimal,
@JsonProperty("side")
var side: TradeSideType,
@JsonProperty("fee")
val fee: BigDecimal,
@JsonProperty("ctime")
val ctime: ZonedDateTime,
@JsonProperty("deal_price")
val dealPrice: BigDecimal,
@JsonProperty("id")
val id: Int
val id: Int,
@JsonProperty("type")
val typeChinese: String
)

0 comments on commit 1eceff4

Please sign in to comment.