org.knowm.xchange.coinbasepro.dto.account.CoinbaseProWithdrawCryptoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinbasepro Show documentation
Show all versions of xchange-coinbasepro Show documentation
XChange implementation for CoinbasePro
The newest version!
package org.knowm.xchange.coinbasepro.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
public class CoinbaseProWithdrawCryptoResponse {
public final String id;
public final BigDecimal amount;
public final String currency;
public CoinbaseProWithdrawCryptoResponse(
@JsonProperty("id") String id,
@JsonProperty("amount") BigDecimal amount,
@JsonProperty("currency") String currency) {
this.id = id;
this.amount = amount;
this.currency = currency;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy