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

com.penalara.ghc.jsonghcfile.engineghcfile.Period Maven / Gradle / Ivy

Go to download

Project with Java POJO classes of full file format to new PeñalaraGHC-Engine.

There is a newer version: 0.6.0
Show newest version

package com.penalara.ghc.jsonghcfile.engineghcfile;

import java.util.LinkedHashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Period
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "id", "lastDay" }) public class Period { /** * Period identifier. * (Required) * */ @JsonProperty("id") @JsonPropertyDescription("Period identifier.") private String id; /** * The end day of the period (included). * (Required) * */ @JsonProperty("lastDay") @JsonPropertyDescription("The end day of the period (included).") private Integer lastDay; @JsonIgnore private Map additionalProperties = new LinkedHashMap(); /** * Period identifier. * (Required) * */ @JsonProperty("id") public String getId() { return id; } /** * Period identifier. * (Required) * */ @JsonProperty("id") public void setId(String id) { this.id = id; } /** * The end day of the period (included). * (Required) * */ @JsonProperty("lastDay") public Integer getLastDay() { return lastDay; } /** * The end day of the period (included). * (Required) * */ @JsonProperty("lastDay") public void setLastDay(Integer lastDay) { this.lastDay = lastDay; } @JsonAnyGetter public Map getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy