com.github.agogs.holidayapi.model.Holiday Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-holiday-api Show documentation
Show all versions of java-holiday-api Show documentation
Your project description here
package com.github.agogs.holidayapi.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Getter;
import lombok.Setter;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"name",
"date",
"observed",
"public"
})
public class Holiday {
@JsonProperty("name")
@Getter
@Setter
private String name;
@JsonProperty("date")
@Getter
@Setter
private String date;
@JsonProperty("observed")
@Getter
@Setter
private String observed;
@JsonProperty("public")
@Getter
@Setter
private Boolean _public;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy