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 11package com .bandwidth .iris .sdk .model ;
22
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 ;
76
87@ XmlRootElement (name = "TelephoneNumberDetails" )
98@ XmlAccessorType (XmlAccessType .FIELD )
@@ -32,6 +31,10 @@ public class TelephoneNumberDetails extends TelephoneNumberDetail {
3231 @ XmlElement (name = "Lata" )
3332 private String lata ;
3433
34+ @ XmlElementWrapper (name = "ServiceTypes" )
35+ @ XmlElement (name = "ServiceType" )
36+ private List <String > serviceTypes = new ArrayList <>();
37+
3538 public String getTier () {
3639 return tier ;
3740 }
@@ -95,4 +98,8 @@ public String getLata() {
9598 public void setLata (String lata ) {
9699 this .lata = lata ;
97100 }
101+
102+ public List <String > getServiceTypes () { return serviceTypes ; }
103+
104+ public void setServiceTypes (List <String > serviceTypes ) { this .serviceTypes = serviceTypes ; }
98105}
You can’t perform that action at this time.
0 commit comments