
org.knowm.xchange.ripple.dto.account.RippleAccountSettings 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
The newest version!
package org.knowm.xchange.ripple.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.ripple.dto.RippleCommon;
public final class RippleAccountSettings extends RippleCommon {
@JsonProperty("settings")
private RippleSettings settings = new RippleSettings();
public RippleSettings getSettings() {
return settings;
}
public void setSettings(final RippleSettings value) {
settings = value;
}
@Override
public String toString() {
return String.format("%s [settings=%s]", getClass().getSimpleName(), settings);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy