@@ -13,6 +13,10 @@ public class ProfileUpdater extends MessagingProfileUpdater<Profile> {
1313 private String vertical ;
1414 private ProfileAuthorizedContact authorizedContact ;
1515 private String businessContactEmail ;
16+ private String ein ;
17+ private String einIssuingCountry ;
18+ private String altBusinessId ;
19+ private String altBusinessIdType ;
1620
1721 public ProfileUpdater (String id ) {
1822 super (id );
@@ -76,6 +80,42 @@ public String getBusinessContactEmail(){
7680 return businessContactEmail ;
7781 }
7882
83+ public ProfileUpdater ein (String ein ) {
84+ this .ein = ein ;
85+ return this ;
86+ }
87+
88+ public String getEin (){
89+ return ein ;
90+ }
91+
92+ public ProfileUpdater einIssuingCountry (String einIssuingCountry ) {
93+ this .einIssuingCountry = einIssuingCountry ;
94+ return this ;
95+ }
96+
97+ public String getEinIssuingCountry (){
98+ return einIssuingCountry ;
99+ }
100+
101+ public ProfileUpdater altBusinessId (String altBusinessId ) {
102+ this .altBusinessId = altBusinessId ;
103+ return this ;
104+ }
105+
106+ public String getAltBusinessId (){
107+ return altBusinessId ;
108+ }
109+
110+ public ProfileUpdater altBusinessIdType (String altBusinessIdType ) {
111+ this .altBusinessIdType = altBusinessIdType ;
112+ return this ;
113+ }
114+
115+ public String getAltBusinessIdType (){
116+ return altBusinessIdType ;
117+ }
118+
79119 @ Override
80120 protected Call <Profile > obtainCall () {
81121 return client ().getApiService ().profileUpdate (client ().getAuthId (), id , this );
0 commit comments