org.knowm.xchange.therock.dto.account.TheRockWithdrawalResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-therock Show documentation
Show all versions of xchange-therock Show documentation
XChange implementation for The Rock Trading Exchange
package org.knowm.xchange.therock.dto.account;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class TheRockWithdrawalResponse {
private Integer transactionId;
public Integer getTransactionId() {
return transactionId;
}
@Override
public String toString() {
return String.format("TheRockWithdrawalResponse{transactionId=%d}", transactionId);
}
}