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

redox.datamodel.common.PhoneNumber Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version

package redox.datamodel.common;

import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "Office",
        "Home",
        "Mobile"
})
public class PhoneNumber {

    @JsonProperty("Office")
    private String office;
    @JsonProperty("Home")
    private String home;
    @JsonProperty("Mobile")
    private Object mobile;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    @JsonProperty("Office")
    public String getOffice() {
        return office;
    }

    @JsonProperty("Office")
    public void setOffice(String office) {
        this.office = office;
    }

    @JsonProperty("Home")
    public String getHome() {
        return home;
    }
    @JsonProperty("Home")
    public void setHome(String home) {
        this.home = home;
    }
    @JsonProperty("Mobile")
    public Object getMobile() {
        return mobile;
    }
    @JsonProperty("Mobile")
    public void setMobile(Object mobile) {
        this.mobile = mobile;
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy