org.oxerr.huobi.rest.domain.AbstractObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of huobi-client-rest Show documentation
Show all versions of huobi-client-rest Show documentation
Client for <a href="https://www.huobi.com">Huobi</a> RESTful API.
The newest version!
package org.oxerr.huobi.rest.domain;
import java.io.Serializable;
import org.apache.commons.lang3.builder.ToStringBuilder;
abstract class AbstractObject implements Serializable {
private static final long serialVersionUID = 2014010201L;
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}