com.univapay.sdk.models.response.subscription.ScheduleSettings Maven / Gradle / Ivy
The newest version!
package com.univapay.sdk.models.response.subscription;
import com.google.gson.annotations.SerializedName;
import java.time.LocalDate;
import java.time.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 - 2025 Weber Informatics LLC | Privacy Policy