com.bandwidth.iris.sdk.model.ImportTnError 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="ImportTnError")
@XmlAccessorType(XmlAccessType.FIELD)
public class ImportTnError {
@XmlElement(name = "Code")
private String code;
@XmlElement(name = "Description")
private String description;
@XmlElementWrapper(name = "TelephoneNumbers")
@XmlElement(name = "TelephoneNumber")
private List telephoneNumberList;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getTelephoneNumberList() {
return telephoneNumberList;
}
public void setTelephoneNumberList(List telephoneNumberList) {
this.telephoneNumberList = telephoneNumberList;
}
}