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

cl.transbank.webpay.transaccioncompleta.responses.FullTransactionInstallmentResponse Maven / Gradle / Ivy

The newest version!
package cl.transbank.webpay.transaccioncompleta.responses;

import java.util.List;
import lombok.*;

/**
 * This class represents the details of the OneclickMallTransaction authorization response.
 */
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
@ToString
public class FullTransactionInstallmentResponse {

  private double installmentsAmount;
  private Long idQueryInstallments;
  private List deferredPeriods;

  /**
   * This class represents the details of the FullTransaction installment response.
   */
  @NoArgsConstructor
  @AllArgsConstructor
  @Getter
  @Setter
  @ToString
  public class DeferredPeriod {

    private double amount;
    private byte period;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy