@@ -34,6 +34,9 @@ public class SignRequestCreateSigner extends SerializableObject {
3434 @ JsonProperty ("login_required" )
3535 protected Boolean loginRequired ;
3636
37+ @ JsonProperty ("verification_phone_number" )
38+ protected String verificationPhoneNumber ;
39+
3740 protected String password ;
3841
3942 @ JsonProperty ("signer_group_id" )
@@ -56,6 +59,7 @@ protected SignRequestCreateSigner(SignRequestCreateSignerBuilder builder) {
5659 this .redirectUrl = builder .redirectUrl ;
5760 this .declinedRedirectUrl = builder .declinedRedirectUrl ;
5861 this .loginRequired = builder .loginRequired ;
62+ this .verificationPhoneNumber = builder .verificationPhoneNumber ;
5963 this .password = builder .password ;
6064 this .signerGroupId = builder .signerGroupId ;
6165 this .suppressNotifications = builder .suppressNotifications ;
@@ -93,6 +97,10 @@ public Boolean getLoginRequired() {
9397 return loginRequired ;
9498 }
9599
100+ public String getVerificationPhoneNumber () {
101+ return verificationPhoneNumber ;
102+ }
103+
96104 public String getPassword () {
97105 return password ;
98106 }
@@ -122,6 +130,7 @@ public boolean equals(Object o) {
122130 && Objects .equals (redirectUrl , casted .redirectUrl )
123131 && Objects .equals (declinedRedirectUrl , casted .declinedRedirectUrl )
124132 && Objects .equals (loginRequired , casted .loginRequired )
133+ && Objects .equals (verificationPhoneNumber , casted .verificationPhoneNumber )
125134 && Objects .equals (password , casted .password )
126135 && Objects .equals (signerGroupId , casted .signerGroupId )
127136 && Objects .equals (suppressNotifications , casted .suppressNotifications );
@@ -138,6 +147,7 @@ public int hashCode() {
138147 redirectUrl ,
139148 declinedRedirectUrl ,
140149 loginRequired ,
150+ verificationPhoneNumber ,
141151 password ,
142152 signerGroupId ,
143153 suppressNotifications );
@@ -178,6 +188,10 @@ public String toString() {
178188 + loginRequired
179189 + '\''
180190 + ", "
191+ + "verificationPhoneNumber='"
192+ + verificationPhoneNumber
193+ + '\''
194+ + ", "
181195 + "password='"
182196 + password
183197 + '\''
@@ -210,6 +224,8 @@ public static class SignRequestCreateSignerBuilder {
210224
211225 protected Boolean loginRequired ;
212226
227+ protected String verificationPhoneNumber ;
228+
213229 protected String password ;
214230
215231 protected String signerGroupId ;
@@ -261,6 +277,11 @@ public SignRequestCreateSignerBuilder loginRequired(Boolean loginRequired) {
261277 return this ;
262278 }
263279
280+ public SignRequestCreateSignerBuilder verificationPhoneNumber (String verificationPhoneNumber ) {
281+ this .verificationPhoneNumber = verificationPhoneNumber ;
282+ return this ;
283+ }
284+
264285 public SignRequestCreateSignerBuilder password (String password ) {
265286 this .password = password ;
266287 return this ;
0 commit comments