com.imiconnect.connect.voice.callback.action.AnswerAction 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;
import lombok.Builder;
import lombok.Value;
/** Callback response that tells the system to answer a call. */
@Value
@Builder(builderClassName = "Builder") // Included for consistency
public final class AnswerAction implements Action {
private final Type action = Type.ANSWER;
}