com.bandwidth.iris.sdk.model.Subscriber 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "Subscriber")
@XmlAccessorType(XmlAccessType.FIELD)
public class Subscriber {
@XmlElement(name = "SubscriberType")
private String subscriberType;
@XmlElement(name = "BusinessName")
private String businessName;
@XmlElement(name = "ServiceAddress")
private ServiceAddress serviceAddress;
@XmlElement(name = "FirstName")
private String firstName;
@XmlElement(name = "LastName")
private String lastName;
@XmlElement(name = "MiddleInitial")
private String middleInitial;
@XmlElement(name = "Name")
private String name;
public String getMiddleInitial() {
return middleInitial;
}
public void setMiddleInitial(String middleInitial) {
this.middleInitial = middleInitial;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSubscriberType() {
return subscriberType;
}
public void setSubscriberType(String subscriberType) {
this.subscriberType = subscriberType;
}
public String getBusinessName() {
return businessName;
}
public void setBusinessName(String businessName) {
this.businessName = businessName;
}
public ServiceAddress getServiceAddress() {
return serviceAddress;
}
public void setServiceAddress(ServiceAddress serviceAddress) {
this.serviceAddress = serviceAddress;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
}