com.plivo.api.xml.Dtmf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plivo-java Show documentation
Show all versions of plivo-java Show documentation
A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
package com.plivo.api.xml;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlValue;
@XmlRootElement(name = "DTMF")
public class Dtmf extends PlivoXml implements ResponseNestable {
@XmlAttribute
private Boolean async;
@XmlValue
private String content;
public Dtmf(String content) {
this.content = content;
}
private Dtmf() {
}
}