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

net.anwiba.spatial.osm.overpass.schema.v00_6.Member Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
//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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy