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

jp.gopay.sdk.models.response.subscription.FullSubscription 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 java.math.BigDecimal;
import java.math.BigInteger;

public class FullSubscription extends Subscription{

    @SerializedName("amount_left")
    private BigInteger amountLeft;

    @SerializedName("amount_left_formatted")
    private BigDecimal amountLeftFormatted;

    @SerializedName("installment_plan")
    private InstallmentPlan installmentPlan;

    @SerializedName("next_payment")
    private ScheduledPayment nextPayment;

    @SerializedName("payments_left")
    private Integer paymentsLeft;

    public BigInteger getAmountLeft() {
        return amountLeft;
    }

    public BigDecimal getAmountLeftFormatted() {
        return amountLeftFormatted;
    }

    public InstallmentPlan getInstallmentPlan() {
        return installmentPlan;
    }

    public ScheduledPayment getNextPayment() {
        return nextPayment;
    }

    public Integer getPaymentsLeft() {
        return paymentsLeft;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy