org.mobilitydata.gbfs.v2_2.gbfs.GBFSFeeds Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gbfs-java-model Show documentation
Show all versions of gbfs-java-model Show documentation
Generates Java model from GBFS JSON schema using jsonschema2pojo.
The newest version!
package org.mobilitydata.gbfs.v2_2.gbfs;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import java.io.Serializable;
import java.util.List;
public class GBFSFeeds implements Serializable {
@JsonProperty("feeds")
@JsonPropertyDescription("An array of all of the feeds that are published by the auto-discovery file. Each element in the array is an object with the keys below.")
private List feeds;
public List getFeeds() {
return feeds;
}
public void setFeeds(List feeds) {
this.feeds = feeds;
}
@Override
public String toString() {
return "GBFSFeeds{" +
"feeds=" + feeds +
'}';
}
}