com.descope.enums.UserStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.enums;
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;
public enum UserStatus {
ENABLED("enabled"),
DISABLED("disabled"),
INVITED("invited");
@Getter
@JsonValue
private final String value;
UserStatus(String value) {
this.value = value;
}
}