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

com.penalara.ghc.jsonghcfile.engineghcfile.FreePartTime 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 com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * FreePartTime
 * 

* Free half-time periods . * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "mornings", "afternoons", "indistinctly" }) public class FreePartTime { /** * MorningsFreePartTimes *

* Mornings off. * */ @JsonProperty("mornings") @JsonPropertyDescription("Mornings off.") private MorningsFreePartTimes mornings; /** * AfternoonFreePartTimes *

* Afternoons off. * */ @JsonProperty("afternoons") @JsonPropertyDescription("Afternoons off.") private AfternoonFreePartTimes afternoons; /** * IndistinctlyFreePartTimes *

* Free mornings or evenings indistinctly. * */ @JsonProperty("indistinctly") @JsonPropertyDescription("Free mornings or evenings indistinctly.") private IndistinctlyFreePartTimes indistinctly; /** * MorningsFreePartTimes *

* Mornings off. * */ @JsonProperty("mornings") public MorningsFreePartTimes getMornings() { return mornings; } /** * MorningsFreePartTimes *

* Mornings off. * */ @JsonProperty("mornings") public void setMornings(MorningsFreePartTimes mornings) { this.mornings = mornings; } /** * AfternoonFreePartTimes *

* Afternoons off. * */ @JsonProperty("afternoons") public AfternoonFreePartTimes getAfternoons() { return afternoons; } /** * AfternoonFreePartTimes *

* Afternoons off. * */ @JsonProperty("afternoons") public void setAfternoons(AfternoonFreePartTimes afternoons) { this.afternoons = afternoons; } /** * IndistinctlyFreePartTimes *

* Free mornings or evenings indistinctly. * */ @JsonProperty("indistinctly") public IndistinctlyFreePartTimes getIndistinctly() { return indistinctly; } /** * IndistinctlyFreePartTimes *

* Free mornings or evenings indistinctly. * */ @JsonProperty("indistinctly") public void setIndistinctly(IndistinctlyFreePartTimes indistinctly) { this.indistinctly = indistinctly; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy