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

com.plivo.api.xml.Break 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;
import javax.xml.bind.annotation.XmlValue;

@XmlRootElement(name = "break")
public class Break extends PlivoXml implements EmphasisNestable,
                                               LangNestable,
                                               PNestable,
                                               ProsodyNestable,
                                               SNestable,
                                               SpeakNestable,
                                               WNestable {

  @XmlAttribute
  private String strength;

  @XmlAttribute
  private String time;

  public Break() {
  }

  public Break(String strength, String time) {
    this.strength = strength;
    this.time = time;
  }

  public String getStrength() {
    return this.strength;
  }

  public String getTime() {
    return this.time;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy