com.bandwidth.voice.bxml.verbs.Pause 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* The Pause verb is used to delay for a set period of time. Silence will be heard.
*/
@Builder
@XmlType(name = Pause.TYPE_NAME)
public class Pause implements Verb {
public static final String TYPE_NAME = "Pause";
/**
* (optional) The 'duration' attribute specifies how many seconds Bandwidth will wait silently before continuing on. Default value is 1. Range: decimal values between 0.1 - 86400.
*/
@XmlAttribute
private Double duration;
}