com.bandwidth.iris.sdk.model.Warning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-java-iris-sdk Show documentation
Show all versions of bandwidth-java-iris-sdk Show documentation
Java SDK for use with the IRIS API.
package com.bandwidth.iris.sdk.model;
import javax.xml.bind.annotation.*;
import java.util.List;
@XmlRootElement(name = "Warning")
@XmlAccessorType(XmlAccessType.FIELD)
public class Warning extends BaseModel {
@XmlElement(name = "TelephoneNumber")
private String telephoneNumber;
@XmlElement(name = "Description")
private String description;
public String getTelephoneNumber() {
return telephoneNumber;
}
public void setTelephoneNumber(String telephoneNumber) {
this.telephoneNumber = telephoneNumber;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}