We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e02172 commit b6b5e99Copy full SHA for b6b5e99
src/main/java/com/bandwidth/iris/sdk/model/DldaTnGroup.java
@@ -26,6 +26,9 @@ public class DldaTnGroup {
26
@XmlElement(name = "Address")
27
private Address address;
28
29
+ @XmlElement(name = "SubscriberType")
30
+ private String subscriberType;
31
+
32
public List<String> getTelephoneNumberList() {
33
return telephoneNumberList;
34
}
@@ -74,4 +77,11 @@ public void setAddress(Address address) {
74
77
this.address = address;
75
78
76
79
80
+ public String getSubcsriberType() {
81
+ return subscriberType;
82
+ }
83
84
+ public void setSubscriberType(String subscriberType) {
85
+ this.subscriberType = subscriberType;
86
87
0 commit comments