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

jp.gopay.sdk.models.response.subscription.SimulatedPayment Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.response.subscription;

import com.google.gson.annotations.SerializedName;
import org.joda.time.LocalDate;
import org.threeten.bp.ZoneId;

import java.math.BigInteger;

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 - 2024 Weber Informatics LLC | Privacy Policy