setInteractiveChannel
setInteractiveChannel(interactiveChannel)
The setInteractiveChannel method defines the name of the interactive channel used by the startSession command.
*
interactiveChannel-a string containing the interactive channel name.
*
The interactiveChannel must match the name of the interactive channel as defined in Campaign exactly. It is case-sensitive.
Return value
None.
Example
The following example is an excerpt from an executeBatch method calling startSession.
String interactiveChannel="Accounts Website";
. . .
Command startSessionCommand = new CommandImpl();
startSessionCommand.setInteractiveChannel(interactiveChannel);