org.knowm.xchange.ripple.dto.trade.RippleOrderCancelRequest 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;
public class RippleOrderCancelRequest {
@JsonProperty("secret")
private String secret;
public String getSecret() {
return secret;
}
public void setSecret(final String value) {
secret = value;
}
@Override
public String toString() {
return getClass().getSimpleName(); // do not log secret
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy