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

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

There is a newer version: 1.7.4
Show newest version
/**
 * 
 */
package mx.openpay.client;

import java.math.BigDecimal;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import com.google.gson.annotations.SerializedName;

/**
 * @author Luis Delucio
 *
 */
@Setter
@Getter
@NoArgsConstructor
public class TransactionsPayoutResume {

	@SerializedName("in")
	private BigDecimal in;

	@SerializedName("out")
	private BigDecimal out;

	@SerializedName("charged_adjustments")
	private BigDecimal chargedAdjustments;

	@SerializedName("refunded_adjustments")
	private BigDecimal refundedAdjustments;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy