Package com.unblu.sdk.core.model
Enum Class ConversationRecipientType
- All Implemented Interfaces:
Serializable
,Comparable<ConversationRecipientType>
,Constable
Defines the types of recipients for conversation requests. Whenever a new conversation is created with an initial engagement type which is a request, the conversation goes into the queue on the agent side. Who can see the request varies depending on the recipient of the request.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConversationRecipientType
Returns the enum constant of this class with the specified name.static ConversationRecipientType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AGENT
The recipient type of a conversation is an agent -
TEAM
The recipient type of a conversation is a team
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-