@@ -66,6 +66,7 @@ def __init__(
6666 redirect_url : Optional [str ] = None ,
6767 declined_redirect_url : Optional [str ] = None ,
6868 login_required : Optional [bool ] = None ,
69+ verification_phone_number : Optional [str ] = None ,
6970 password : Optional [str ] = None ,
7071 signer_group_id : Optional [str ] = None ,
7172 suppress_notifications : Optional [bool ] = None ,
@@ -118,6 +119,10 @@ def __init__(
118119 an existing account, they will have the option to create
119120 a free Box account., defaults to None
120121 :type login_required: Optional[bool], optional
122+ :param verification_phone_number: If set, this phone number will be used to verify the signer
123+ via two-factor authentication before they are able to sign the document.
124+ Cannot be selected in combination with `login_required`., defaults to None
125+ :type verification_phone_number: Optional[str], optional
121126 :param password: If set, the signer is required to enter the password before they are able
122127 to sign a document. This field is write only., defaults to None
123128 :type password: Optional[str], optional
@@ -141,6 +146,7 @@ def __init__(
141146 redirect_url = redirect_url ,
142147 declined_redirect_url = declined_redirect_url ,
143148 login_required = login_required ,
149+ verification_phone_number = verification_phone_number ,
144150 password = password ,
145151 signer_group_id = signer_group_id ,
146152 suppress_notifications = suppress_notifications ,
0 commit comments