com.penalara.ghc.jsonghcfile.engineghcfile.EngineOutputGHCSchema Maven / Gradle / Ivy
Show all versions of engineGHCFile Show documentation
package com.penalara.ghc.jsonghcfile.engineghcfile;
import java.util.Date;
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;
/**
* EngineOutputGHCSchema
*
* Schema document to format in Json the timetable created by PenalaraGHC.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"date",
"weight",
"timetable"
})
public class EngineOutputGHCSchema {
/**
* JsonGenerationDate
*
* Date of result creation.
*
*/
@JsonProperty("date")
@JsonPropertyDescription("Date of result creation.")
private Date date;
/**
* ResultWeight
*
* Weight of the result according to the non-mandatory conditions not fulfilled.
* (Required)
*
*/
@JsonProperty("weight")
@JsonPropertyDescription("Weight of the result according to the non-mandatory conditions not fulfilled.")
private Integer weight;
/**
* GeneratedJsonTimetable
*
* Object with timetable specification resolved.
* (Required)
*
*/
@JsonProperty("timetable")
@JsonPropertyDescription("Object with timetable specification resolved.")
private GeneratedJsonTimetable timetable;
@JsonIgnore
private Map additionalProperties = new LinkedHashMap();
/**
* JsonGenerationDate
*
* Date of result creation.
*
*/
@JsonProperty("date")
public Date getDate() {
return date;
}
/**
* JsonGenerationDate
*
* Date of result creation.
*
*/
@JsonProperty("date")
public void setDate(Date date) {
this.date = date;
}
/**
* ResultWeight
*
* Weight of the result according to the non-mandatory conditions not fulfilled.
* (Required)
*
*/
@JsonProperty("weight")
public Integer getWeight() {
return weight;
}
/**
* ResultWeight
*
* Weight of the result according to the non-mandatory conditions not fulfilled.
* (Required)
*
*/
@JsonProperty("weight")
public void setWeight(Integer weight) {
this.weight = weight;
}
/**
* GeneratedJsonTimetable
*
* Object with timetable specification resolved.
* (Required)
*
*/
@JsonProperty("timetable")
public GeneratedJsonTimetable getTimetable() {
return timetable;
}
/**
* GeneratedJsonTimetable
*
* Object with timetable specification resolved.
* (Required)
*
*/
@JsonProperty("timetable")
public void setTimetable(GeneratedJsonTimetable timetable) {
this.timetable = timetable;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}