Skip to content

Commit b6b5e99

Browse files
Added SubscriberType to DldaOrder
1 parent 7e02172 commit b6b5e99

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/com/bandwidth/iris/sdk/model/DldaTnGroup.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ public class DldaTnGroup {
2626
@XmlElement(name = "Address")
2727
private Address address;
2828

29+
@XmlElement(name = "SubscriberType")
30+
private String subscriberType;
31+
2932
public List<String> getTelephoneNumberList() {
3033
return telephoneNumberList;
3134
}
@@ -74,4 +77,11 @@ public void setAddress(Address address) {
7477
this.address = address;
7578
}
7679

80+
public String getSubcsriberType() {
81+
return subscriberType;
82+
}
83+
84+
public void setSubscriberType(String subscriberType) {
85+
this.subscriberType = subscriberType;
86+
}
7787
}

0 commit comments

Comments
 (0)