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

odata.msgraph.client.enums.ContactRelationship Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package odata.msgraph.client.enums;

import com.fasterxml.jackson.annotation.JsonEnumDefaultValue;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.davidmoten.odata.client.Enum;

import java.lang.Override;
import java.lang.String;

public enum ContactRelationship implements Enum {

    @JsonProperty("parent")
    PARENT("parent", "0"),

    @JsonProperty("relative")
    RELATIVE("relative", "1"),

    @JsonProperty("aide")
    AIDE("aide", "2"),

    @JsonProperty("doctor")
    DOCTOR("doctor", "3"),

    @JsonProperty("guardian")
    GUARDIAN("guardian", "4"),

    @JsonProperty("child")
    CHILD("child", "5"),

    @JsonProperty("other")
    OTHER("other", "6"),

    @JsonProperty("unknownFutureValue")
    @JsonEnumDefaultValue
    UNKNOWN_FUTURE_VALUE("unknownFutureValue", "7");

    private final String name;
    private final String value;

    private ContactRelationship(String name, String value) {
        this.name = name;
        this.value = value;
    }

    @Override
    public String enumName() {
        return name;
    }

    @Override
    public String enumValue() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy