mx.openpay.client.ExchangeRate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpay-api-client Show documentation
Show all versions of openpay-api-client Show documentation
Java client for Openpay Services
/**
*
*/
package mx.openpay.client;
import java.math.BigDecimal;
import java.util.Date;
import lombok.Getter;
import lombok.ToString;
import com.google.gson.annotations.SerializedName;
/**
* @author Luis Delucio
*
*/
@Getter
@ToString
public class ExchangeRate {
@SerializedName("from")
private String fromCurrency;
@SerializedName("to")
private String toCurrency;
private Date date;
private BigDecimal value;
private BigDecimal rate;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy