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

com.github.agogs.holidayapi.model.Holiday Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
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