All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.coinbasepro.dto.account.CoinbaseProWithdrawCryptoResponse Maven / Gradle / Ivy

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