com.imiconnect.connect.voice.callback.action.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
The newest version!
package com.imiconnect.connect.voice.callback.action;
/** Defines a type of action that is used as a reply to a callback event. */
public interface Action {
public enum Type {
ANSWER,
HANGUP,
PATCH,
PLAY,
RECORD
}
/**
* Gets the name of the action.
*
* @return The name of the action.
*/
public Type getAction();
}