Interface RecategorizationOperationBuilder
-
public interface RecategorizationOperationBuilder
The RecategorizationOperationBuilder provides specific builders to build a recategorization operation on a ticket.- Since:
- 10.0.202
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RecategorizationOperationBuilder.WithCall
static interface
RecategorizationOperationBuilder.WithTicket
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecategorizationOperationBuilder.WithCall
call(Call call)
RecategorizationOperationBuilder.WithCall
call(java.lang.Long callId)
RecategorizationOperationBuilder.WithTicket
ticket(Ticket ticket)
RecategorizationOperationBuilder.WithTicket
ticket(java.lang.Long ticketId)
-
-
-
Method Detail
-
ticket
RecategorizationOperationBuilder.WithTicket ticket(java.lang.Long ticketId) throws ValidationException
- Parameters:
ticketId
- the ticketId of the ticket to be recategorized.- Returns:
- the RecategorizationOperationBuilder.WithTicket
- Throws:
ValidationException
- if the ticketId is invalid or the ticket has an inappropriate status.- Since:
- 10.0.202
-
ticket
RecategorizationOperationBuilder.WithTicket ticket(Ticket ticket) throws ValidationException
- Parameters:
ticket
- the ticket to be recategorized.- Returns:
- the RecategorizationOperationBuilder.WithTicket
- Throws:
ValidationException
- if the ticketId is invalid or the ticket has an inappropriate status.- Since:
- 10.0.202
-
call
RecategorizationOperationBuilder.WithCall call(java.lang.Long callId) throws ValidationException
- Parameters:
callId
- the callId of the call to be recategorized.- Returns:
- the RecategorizationOperationBuilder.WithCall
- Throws:
ValidationException
- if the callId is invalid or the call has an inappropriate state.- Since:
- 12.31
-
call
RecategorizationOperationBuilder.WithCall call(Call call) throws ValidationException
- Parameters:
call
- the call to be recategorized.- Returns:
- the RecategorizationOperationBuilder.WithCall
- Throws:
ValidationException
- if the callId is invalid or the call has an inappropriate state.- Since:
- 12.31
-
-