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

org.mobilitydata.gbfs.v2_2.gbfs.GBFSFeeds Maven / Gradle / Ivy

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 +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy