
com.bandwidth.voice.bxml.verbs.Ring Maven / Gradle / Ivy
package com.bandwidth.voice.bxml.verbs;
import lombok.Builder;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* The Ring verb is used to play ringing audio on a call.
*/
@Builder
@XmlType(name = Ring.TYPE_NAME)
public class Ring implements Verb {
public static final String TYPE_NAME = "Ring";
/**
* (optional) How many seconds to play ringing on the call. Default value is 5. Range: decimal values between 0.1 - 86400.
*/
@XmlAttribute
private Double duration;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy