com.bitpay.sdk.model.rate.Rates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
package com.bitpay.sdk.model.rate;
import com.bitpay.sdk.client.RateClient;
import com.bitpay.sdk.exceptions.BitPayApiException;
import com.bitpay.sdk.exceptions.BitPayGenericException;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
/**
* Rates are exchange rates, representing the number of fiat currency units equivalent to one BTC.
*
* @see REST API Rates
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Rates {
protected List rates;
/**
* Instantiates a new Rates.
*
* @param rates the rates
*/
public Rates(List rates) {
this.rates = rates;
}
/**
* Gets rates.
*
* @return the rates
*/
public List getRates() {
return this.rates;
}
/**
* Update rates.
*
* @param rateClient the rate client
* @throws BitPayGenericException BitPayGenericException class
* @throws BitPayApiException BitPayApiException class
*/
public void update(RateClient rateClient) throws BitPayGenericException, BitPayApiException {
this.rates = rateClient.getRates().getRates();
}
/**
* Gets rate for the requested baseCurrency /currency pair.
*
* @param currencyCode the currency code
* @return the rate
*/
public double getRate(String currencyCode) {
double val = 0;
for (Rate rateObj : this.rates) {
if (rateObj.getCode().equals(currencyCode)) {
val = rateObj.getValue();
break;
}
}
return val;
}
}