org.knowm.xchange.ripple.dto.trade.RippleOrderEntryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-ripple Show documentation
Show all versions of xchange-ripple Show documentation
XChange implementation for the Ripple Network
package org.knowm.xchange.ripple.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.ripple.dto.RippleCommon;
public final class RippleOrderEntryResponse extends RippleCommon {
@JsonProperty("order")
private RippleOrderResponseBody order;
public RippleOrderResponseBody getOrder() {
return order;
}
public void setOrder(final RippleOrderResponseBody value) {
order = value;
}
@Override
public String toString() {
return String.format(
"%s [success=%b, hash=%s, ledger=%s, state=%s, order=%s]",
getClass().getSimpleName(), success, hash, ledger, state, order);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy