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

odata.msgraph.client.security.enums.CaseStatus Maven / Gradle / Ivy

package odata.msgraph.client.security.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 CaseStatus implements Enum {

    @JsonProperty("unknown")
    UNKNOWN("unknown", "0"),

    @JsonProperty("active")
    ACTIVE("active", "1"),

    @JsonProperty("pendingDelete")
    PENDING_DELETE("pendingDelete", "2"),

    @JsonProperty("closing")
    CLOSING("closing", "3"),

    @JsonProperty("closed")
    CLOSED("closed", "4"),

    @JsonProperty("closedWithError")
    CLOSED_WITH_ERROR("closedWithError", "5"),

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

    private final String name;
    private final String value;

    private CaseStatus(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