All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imiconnect.connect.voice.callback.action.AnswerAction Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy