jp.gopay.sdk.models.response.subscription.SimulatedPayment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
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;
}
}