com.bandwidth.iris.sdk.model.LidbTnGroup 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 = "LidbTnGroup")
@XmlAccessorType(XmlAccessType.FIELD)
public class LidbTnGroup {
@XmlElementWrapper(name = "TelephoneNumbers")
@XmlElement(name = "TelephoneNumber")
private List telephoneNumberList = new ArrayList();
@XmlElement(name = "SubscriberInformation")
private String subscriberInformation;
@XmlElement(name = "UseType")
private String useType;
@XmlElement(name = "Visibility")
private String visibility;
public List getTelephoneNumberList() {
return telephoneNumberList;
}
public void setTelephoneNumberList(List telephoneNumberList) {
this.telephoneNumberList = telephoneNumberList;
}
public String getSubscriberInformation() {
return subscriberInformation;
}
public void setSubscriberInformation(String subscriberInformation) {
this.subscriberInformation = subscriberInformation;
}
public String getUseType() {
return useType;
}
public void setUseType(String useType) {
this.useType = useType;
}
public String getVisibility() {
return visibility;
}
public void setVisibility(String visibility) {
this.visibility = visibility;
}
}