com.bandwidth.iris.sdk.model.LineOptions 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.ArrayList;
import java.util.List;
@XmlRootElement(name = "LineOptions")
@XmlAccessorType(XmlAccessType.FIELD)
public class LineOptions {
@XmlElementWrapper(name = "CompletedNumbers")
@XmlElement(name = "TelephoneNumber")
private List completedNumbers = new ArrayList();
@XmlElementWrapper(name = "Errors")
@XmlElement(name = "Error")
private List errors = new ArrayList();
public List getCompletedNumbers() {
return completedNumbers;
}
public void setCompletedNumbers(List telephoneNumbers) {
this.completedNumbers = telephoneNumbers;
}
public List getErrors() {
return errors;
}
public void setErrors(List errors) {
this.errors = errors;
}
}