com.bandwidth.voice.bxml.verbs.Hangup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
package com.bandwidth.voice.bxml.verbs;
import lombok.Builder;
import javax.xml.bind.annotation.XmlType;
/**
* The Hangup verb is used to hang up the current call. No further BXML verbs are processed.
*
* The Hangup verb is also used to reject incoming calls either explicitly or implicitly.
*/
@Builder
@XmlType(name = Hangup.TYPE_NAME)
public class Hangup implements Verb {
public static final String TYPE_NAME = "Hangup";
}