net.anwiba.spatial.osm.overpass.schema.v00_6.Node Maven / Gradle / Ivy
//Copyright (c) 2017 by Andreas W. Bartels ([email protected])
package net.anwiba.spatial.osm.overpass.schema.v00_6;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Node
extends OverpassObject
{
private final String type = "node";
@JsonProperty("type")
public void setType(final String type) {
}
@JsonProperty("type")
public String getType() {
return this.type;
}
}