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

com.penalara.ghc.jsonghcfile.engineghcfile.Frame 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.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
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;


/**
 * Frame
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "id", "days" }) public class Frame { /** * Frame identifier. * (Required) * */ @JsonProperty("id") @JsonPropertyDescription("Frame identifier.") private String id; /** * Days *

* List of the days in the frame * (Required) * */ @JsonProperty("days") @JsonPropertyDescription("List of the days in the frame") private List days = new ArrayList(); @JsonIgnore private Map additionalProperties = new LinkedHashMap(); /** * Frame identifier. * (Required) * */ @JsonProperty("id") public String getId() { return id; } /** * Frame identifier. * (Required) * */ @JsonProperty("id") public void setId(String id) { this.id = id; } /** * Days *

* List of the days in the frame * (Required) * */ @JsonProperty("days") public List getDays() { return days; } /** * Days *

* List of the days in the frame * (Required) * */ @JsonProperty("days") public void setDays(List days) { this.days = days; } @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