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

com.univapay.sdk.models.response.subscription.SimulatedPayment Maven / Gradle / Ivy

The newest version!
package com.univapay.sdk.models.response.subscription;

import com.google.gson.annotations.SerializedName;
import java.math.BigInteger;
import java.time.LocalDate;
import java.time.ZoneId;

public class SimulatedPayment {

  @SerializedName("due_date")
  private LocalDate dueDate;

  @SerializedName("zone_id")
  private ZoneId zoneId;

  @SerializedName("amount")
  private BigInteger amount;

  @SerializedName("currency")
  private String currency;

  @SerializedName("is_paid")
  private Boolean isPaid;

  @SerializedName("is_last_payment")
  private Boolean isLastPayment;

  public LocalDate getDueDate() {
    return dueDate;
  }

  public ZoneId getZoneId() {
    return zoneId;
  }

  public BigInteger getAmount() {
    return amount;
  }

  public String getCurrency() {
    return currency;
  }

  public Boolean getIsPaid() {
    return isPaid;
  }

  public Boolean getIsLastPayment() {
    return isLastPayment;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy