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

mx.openpay.client.ExchangeRate Maven / Gradle / Ivy

There is a newer version: 1.7.4
Show newest version
/**
 * 
 */
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