cl.transbank.transaccioncompleta.model.MallFullTransactionCommitResponse 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.transaccioncompleta.model;
import cl.transbank.transaccioncompleta.TransactionCommitRequest;
import com.google.gson.annotations.SerializedName;
import lombok.*;
import java.util.List;
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
@ToString
public class MallFullTransactionCommitResponse {
private String buyOrder;
private String sessionId;
private String cardNumber;
private String expirationDate;
private String accountingDate;
private String transactionDate;
private List details;
@NoArgsConstructor @AllArgsConstructor
@Getter @Setter @ToString
public class Detail {
private String authorizationCode;
private String paymentTypeCode;
private byte responseCode;
private double installmentsAmount;
private byte installmentsNumber;
private double amount;
private String commerceCode;
private String buyOrder;
private String status;
private double balance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy