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

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

Go to download

Project with schema, examples, and Java POJO classes of Json file format to new PeñalaraGHC-Engine input.

The 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;


/**
 * ConsecutiveAnyTimeFreeTimes
 * 

* Teacher's free intervals at any time of the day. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "strictDays", "preferredDays", "minutes" }) public class ConsecutiveAnyTimeFreeTimes { /** * Strict number of days on which the teacher must have the interval free. * */ @JsonProperty("strictDays") @JsonPropertyDescription("Strict number of days on which the teacher must have the interval free. ") private Integer strictDays = 0; /** * Preferred number of days on which the teacher should have the interval free. * */ @JsonProperty("preferredDays") @JsonPropertyDescription("Preferred number of days on which the teacher should have the interval free. ") private Integer preferredDays = 0; /** * Minutes of free time interval. * (Required) * */ @JsonProperty("minutes") @JsonPropertyDescription("Minutes of free time interval.") private Integer minutes; @JsonIgnore private Map additionalProperties = new LinkedHashMap(); /** * Strict number of days on which the teacher must have the interval free. * */ @JsonProperty("strictDays") public Integer getStrictDays() { return strictDays; } /** * Strict number of days on which the teacher must have the interval free. * */ @JsonProperty("strictDays") public void setStrictDays(Integer strictDays) { this.strictDays = strictDays; } /** * Preferred number of days on which the teacher should have the interval free. * */ @JsonProperty("preferredDays") public Integer getPreferredDays() { return preferredDays; } /** * Preferred number of days on which the teacher should have the interval free. * */ @JsonProperty("preferredDays") public void setPreferredDays(Integer preferredDays) { this.preferredDays = preferredDays; } /** * Minutes of free time interval. * (Required) * */ @JsonProperty("minutes") public Integer getMinutes() { return minutes; } /** * Minutes of free time interval. * (Required) * */ @JsonProperty("minutes") public void setMinutes(Integer minutes) { this.minutes = minutes; } @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