
org.knowm.xchange.binance.dto.trade.BinanceCancelledOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
public final class BinanceCancelledOrder {
public final String symbol;
public final String origClientOrderId;
public final long orderId;
public final String clientOrderId;
public BinanceCancelledOrder(
@JsonProperty("symbol") String symbol,
@JsonProperty("origClientOrderId") String origClientOrderId,
@JsonProperty("orderId") long orderId,
@JsonProperty("clientOrderId") String clientOrderId) {
super();
this.symbol = symbol;
this.origClientOrderId = origClientOrderId;
this.orderId = orderId;
this.clientOrderId = clientOrderId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy