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

com.plivo.api.xml.Hangup 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.46.0
Show newest version
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