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

com.penalara.ghc.jsonghcfile.engineghcfile.Distance 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;


/**
 * Distance
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "refBuilding", "minutes" }) public class Distance { /** * Identifier of the other building that refers to the distance. * (Required) * */ @JsonProperty("refBuilding") @JsonPropertyDescription("Identifier of the other building that refers to the distance.") private String refBuilding; /** * Distance in minutes from the building of the referred building. * (Required) * */ @JsonProperty("minutes") @JsonPropertyDescription("Distance in minutes from the building of the referred building.") private Integer minutes; /** * Identifier of the other building that refers to the distance. * (Required) * */ @JsonProperty("refBuilding") public String getRefBuilding() { return refBuilding; } /** * Identifier of the other building that refers to the distance. * (Required) * */ @JsonProperty("refBuilding") public void setRefBuilding(String refBuilding) { this.refBuilding = refBuilding; } /** * Distance in minutes from the building of the referred building. * (Required) * */ @JsonProperty("minutes") public Integer getMinutes() { return minutes; } /** * Distance in minutes from the building of the referred building. * (Required) * */ @JsonProperty("minutes") public void setMinutes(Integer minutes) { this.minutes = minutes; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy