net.anwiba.spatial.osm.overpass.schema.v00_6.Member 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 Member {
private String type = null;
private String ref = null;
private String role = null;
@JsonProperty("type")
public void setType(final String type) {
this.type = type;
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("ref")
public void setRef(final String ref) {
this.ref = ref;
}
@JsonProperty("ref")
public String getRef() {
return this.ref;
}
@JsonProperty("role")
public void setRole(final String role) {
this.role = role;
}
@JsonProperty("role")
public String getRole() {
return this.role;
}
}