Package com.incode.welcome_sdk
Enum IncodeWelcome.DeleteUserError
-
- All Implemented Interfaces:
public enum IncodeWelcome.DeleteUserError
Types of error when deleing a user
-
-
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 static Array<IncodeWelcome.DeleteUserError>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static IncodeWelcome.DeleteUserError
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static 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.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static IncodeWelcome.DeleteUserError valueOf(String name)
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.)
- Returns:
the enum constant with the specified name
-
-
-
-