File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
src/main/java/com/bandwidth/iris/sdk/model Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
package com .bandwidth .iris .sdk .model ;
2
2
3
- import javax .xml .bind .annotation .XmlAccessType ;
4
- import javax .xml .bind .annotation .XmlAccessorType ;
5
- import javax .xml .bind .annotation .XmlElement ;
6
- import javax .xml .bind .annotation .XmlRootElement ;
3
+ import javax .xml .bind .annotation .*;
4
+ import java .util .ArrayList ;
5
+ import java .util .List ;
7
6
8
7
@ XmlRootElement (name = "TelephoneNumberDetails" )
9
8
@ XmlAccessorType (XmlAccessType .FIELD )
@@ -32,6 +31,10 @@ public class TelephoneNumberDetails extends TelephoneNumberDetail {
32
31
@ XmlElement (name = "Lata" )
33
32
private String lata ;
34
33
34
+ @ XmlElementWrapper (name = "ServiceTypes" )
35
+ @ XmlElement (name = "ServiceType" )
36
+ private List <String > serviceTypes = new ArrayList <>();
37
+
35
38
public String getTier () {
36
39
return tier ;
37
40
}
@@ -95,4 +98,8 @@ public String getLata() {
95
98
public void setLata (String lata ) {
96
99
this .lata = lata ;
97
100
}
101
+
102
+ public List <String > getServiceTypes () { return serviceTypes ; }
103
+
104
+ public void setServiceTypes (List <String > serviceTypes ) { this .serviceTypes = serviceTypes ; }
98
105
}
You can’t perform that action at this time.
0 commit comments