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

cl.transbank.webpay.webpayplus.TransactionCaptureRequest 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
class TransactionCaptureRequest extends WebpayApiRequest {
    @SerializedName("commerce_code") private String commerceCode;
    @SerializedName("buy_order") private String buyOrder;
    @SerializedName("authorization_code") private String authorizationCode;
    @SerializedName("capture_amount") private double captureAmount;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy