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

com.bandwidth.voice.bxml.verbs.Pause Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.0
Show newest version

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy