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

jp.gopay.sdk.models.response.subscription.ScheduleSettings 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;

public class ScheduleSettings {

    @SerializedName("start_on")
    private LocalDate startOn;

    @SerializedName("zone_id")
    private ZoneId zoneId;

    @SerializedName("preserve_end_of_month")
    private Boolean preserveEndOfMonth;

    public ScheduleSettings(LocalDate startOn, ZoneId zoneId, Boolean preserveEndOfMonth) {
        this.startOn = startOn;
        this.zoneId = zoneId;
        this.preserveEndOfMonth = preserveEndOfMonth;
    }

    public LocalDate getStartOn() {
        return startOn;
    }

    public ZoneId getZoneId() {
        return zoneId;
    }

    public Boolean getPreserveEndOfMonth() {
        return preserveEndOfMonth;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy