Package com.incode.welcome_sdk
Enum IncodeWelcome.DeleteUserError
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum IncodeWelcome.DeleteUserError extends Enum<IncodeWelcome.DeleteUserError>
Types of error when deleing a user
-
-
Field Summary
Fields Modifier and Type Field Description private final String
name
private final Integer
ordinal
private final EnumEntries<IncodeWelcome.DeleteUserError>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description UNAUTHORIZED_TOKEN
This means invalid token was used to delete a user. Only a valid user is able to delete other users, so make sure you're calling this method with an approved user's token
SERVER_ERROR
Deletion failed unexpectedly
-
Method Summary
Modifier and Type Method Description final IncodeWelcome.DeleteUserError
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<IncodeWelcome.DeleteUserError>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<IncodeWelcome.DeleteUserError>
getEntries()
Types of error when deleing a user -
-
Method Detail
-
valueOf
final IncodeWelcome.DeleteUserError valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<IncodeWelcome.DeleteUserError> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<IncodeWelcome.DeleteUserError> getEntries()
Types of error when deleing a user
-
-
-
-