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

cl.transbank.webpay.webpayplus.TransactionRefundRequest Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package cl.transbank.webpay.webpayplus;

import cl.transbank.model.WebpayApiRequest;
import com.google.gson.annotations.SerializedName;
import lombok.*;

@NoArgsConstructor @AllArgsConstructor
@Getter @Setter
@ToString
public class TransactionRefundRequest extends WebpayApiRequest {
    @SerializedName("buy_order") private String buyOrder;
    @SerializedName("commerce_code") private String commerceCode;
    @SerializedName("amount") private double amount;

    public TransactionRefundRequest(double amount) {
        super();
        this.amount = amount;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy