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

com.penalara.ghc.jsonghcfile.engineghcfile.MaximumSeparationToSession 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.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * MaximumSeparationToSession
 * 

* It contains the session identifier of the class unit to be taught with a number of days in between, and maximum days. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refSessions", "days" }) public class MaximumSeparationToSession { /** * SessionRefs *

* List of sessions references. * (Required) * */ @JsonProperty("refSessions") @JsonPropertyDescription("List of sessions references.") private List refSessions = new ArrayList(); /** * Days of separation condition. * (Required) * */ @JsonProperty("days") @JsonPropertyDescription("Days of separation condition.") private Integer days; /** * SessionRefs *

* List of sessions references. * (Required) * */ @JsonProperty("refSessions") public List getRefSessions() { return refSessions; } /** * SessionRefs *

* List of sessions references. * (Required) * */ @JsonProperty("refSessions") public void setRefSessions(List refSessions) { this.refSessions = refSessions; } /** * Days of separation condition. * (Required) * */ @JsonProperty("days") public Integer getDays() { return days; } /** * Days of separation condition. * (Required) * */ @JsonProperty("days") public void setDays(Integer days) { this.days = days; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy