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

com.plivo.api.xml.Dtmf Maven / Gradle / Ivy

Go to download

A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML

There is a newer version: 5.44.3
Show newest version
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() {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy