org.knowm.xchange.bitmex.dto.trade.BitmexOrderDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitmex Show documentation
Show all versions of xchange-bitmex Show documentation
XChange implementations for the BitMex Exchange.
package org.knowm.xchange.bitmex.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
public class BitmexOrderDescription {
private final String assetPair;
private final BitmexSide type;
private final BitmexOrderTypeDescription orderType;
private final BigDecimal price;
private final BigDecimal secondaryPrice;
private final String leverage;
private final String positionTxId;
private final String orderDescription;
private final String closeDescription;
/**
* Constructor
*
* @param assetPair
* @param type
* @param orderType
* @param price
* @param secondaryPrice
* @param leverage
* @param positionTxId
* @param orderDescription
* @param closeDescription
*/
public BitmexOrderDescription(
@JsonProperty("pair") String assetPair,
@JsonProperty("type") BitmexSide type,
@JsonProperty("ordertype") BitmexOrderTypeDescription orderType,
@JsonProperty("price") BigDecimal price,
@JsonProperty("price2") BigDecimal secondaryPrice,
@JsonProperty("leverage") String leverage,
@JsonProperty("position") String positionTxId,
@JsonProperty("order") String orderDescription,
@JsonProperty("close") String closeDescription) {
this.assetPair = assetPair;
this.type = type;
this.orderType = orderType;
this.price = price;
this.secondaryPrice = secondaryPrice;
this.leverage = leverage;
this.positionTxId = positionTxId;
this.orderDescription = orderDescription;
this.closeDescription = closeDescription;
}
public String getAssetPair() {
return assetPair;
}
public BitmexSide getType() {
return type;
}
public BitmexOrderTypeDescription getOrderType() {
return orderType;
}
public BigDecimal getPrice() {
return price;
}
public BigDecimal getSecondaryPrice() {
return secondaryPrice;
}
public String getLeverage() {
return leverage;
}
public String getPositionTxId() {
return positionTxId;
}
public String getOrderDescription() {
return orderDescription;
}
public String getCloseDescription() {
return closeDescription;
}
@Override
public String toString() {
return "BitmexOrderDescription [assetPair="
+ assetPair
+ ", type="
+ type
+ ", orderType="
+ orderType
+ ", price="
+ price
+ ", secondaryPrice="
+ secondaryPrice
+ ", leverage="
+ leverage
+ ", positionTxId="
+ positionTxId
+ ", orderDescription="
+ orderDescription
+ ", closeDescription="
+ closeDescription
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy