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

com.penalara.ghc.jsonghcfile.engineghcfile.FullDaysFreeTimes 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;


/**
 * FullDaysFreeTimes
 * 

* Teacher's full days of free time. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "strictDays", "preferredDays" }) public class FullDaysFreeTimes { /** * Number of strict days when teacher should be free. * */ @JsonProperty("strictDays") @JsonPropertyDescription("Number of strict days when teacher should be free.") private Integer strictDays = 0; /** * Number of preferred days when teacher should be free. * */ @JsonProperty("preferredDays") @JsonPropertyDescription("Number of preferred days when teacher should be free.") private Integer preferredDays = 0; @JsonIgnore private Map additionalProperties = new LinkedHashMap(); /** * Number of strict days when teacher should be free. * */ @JsonProperty("strictDays") public Integer getStrictDays() { return strictDays; } /** * Number of strict days when teacher should be free. * */ @JsonProperty("strictDays") public void setStrictDays(Integer strictDays) { this.strictDays = strictDays; } /** * Number of preferred days when teacher should be free. * */ @JsonProperty("preferredDays") public Integer getPreferredDays() { return preferredDays; } /** * Number of preferred days when teacher should be free. * */ @JsonProperty("preferredDays") public void setPreferredDays(Integer preferredDays) { this.preferredDays = preferredDays; } @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