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

com.microsoft.graph.beta.generated.models.MicrosoftAuthenticatorAuthenticationMode Maven / Gradle / Ivy

package com.microsoft.graph.beta.models;

import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;

@jakarta.annotation.Generated("com.microsoft.kiota")
public enum MicrosoftAuthenticatorAuthenticationMode implements ValuedEnum {
    DeviceBasedPush("deviceBasedPush"),
    Push("push"),
    Any("any");
    public final String value;
    MicrosoftAuthenticatorAuthenticationMode(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static MicrosoftAuthenticatorAuthenticationMode forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "deviceBasedPush": return DeviceBasedPush;
            case "push": return Push;
            case "any": return Any;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy