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

cl.transbank.transaccioncompleta.model.FullTransactionInstallmentResponse Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package cl.transbank.transaccioncompleta.model;

import lombok.*;

import java.util.List;

@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
@ToString
public class FullTransactionInstallmentResponse {
    private double installmentsAmount;
    private Long idQueryInstallments;
    private List deferredPeriods;

    @NoArgsConstructor @AllArgsConstructor
    @Getter @Setter @ToString
    public class DeferredPeriod {
        private double amount;
        private byte period;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy