
com.plivo.api.xml.Hangup 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;
@XmlRootElement(name = "Hangup")
public class Hangup extends PlivoXml implements ResponseNestable {
@XmlAttribute
private String reason;
@XmlAttribute
private Integer schedule;
public String reason() {
return this.reason;
}
public Integer schedule() {
return this.schedule;
}
public Hangup reason(final String reason) {
this.reason = reason;
return this;
}
public Hangup schedule(final Integer schedule) {
this.schedule = schedule;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy