cl.transbank.webpay.oneclick.TransactionCaptureRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transbank-sdk-java Show documentation
Show all versions of transbank-sdk-java Show documentation
Tranbank API integration SDK for Java Projects
package cl.transbank.webpay.oneclick;
import com.google.gson.annotations.SerializedName;
import cl.transbank.model.WebpayApiRequest;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@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 amount;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy