org.knowm.xchange.cexio.dto.trade.CexIOCancelAllOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cexio Show documentation
Show all versions of xchange-cexio Show documentation
XChange implementation for the Cex.io Exchange
package org.knowm.xchange.cexio.dto.trade;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CexIOCancelAllOrdersResponse {
@JsonProperty("e")
private String eventName;
@JsonProperty("ok")
private String status;
@JsonProperty("data")
private List canceledOrderIds;
public String getEventName() {
return eventName;
}
public void setEventName(String eventName) {
this.eventName = eventName;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public List getCanceledOrderIds() {
return canceledOrderIds;
}
public void setCanceledOrderIds(List canceledOrderIds) {
this.canceledOrderIds = canceledOrderIds;
}
@Override
public String toString() {
return "CexIOCancelAllOrdersResponse{"
+ "eventName='"
+ eventName
+ '\''
+ ", status='"
+ status
+ '\''
+ ", canceledOrderIds="
+ canceledOrderIds
+ '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy