mx.openpay.client.TransactionsPayoutResume 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 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