Name |
Type |
Description |
Notes |
name |
str |
|
|
email_address |
str |
|
[optional] |
private_message |
str |
|
[optional] |
authentication_type |
str |
|
[optional] |
phone_number |
PhoneNumber |
|
[optional] |
delivery_mode |
str |
|
[optional] |
authentication_code |
str |
|
[optional] |
identity_verification_settings |
IdentityVerificationSettings |
|
[optional] |
signer_order |
int |
|
[optional] |
enable_email_otp |
bool |
|
[optional] |
signer_type |
str |
|
[optional] |
host_email |
str |
|
[optional] |
signer_role |
str |
|
[optional] |
allow_field_configuration |
bool |
|
[optional] |
form_fields |
List[FormField] |
|
[optional] |
language |
int |
<p>Description:</p><ul><li><i>0</i> - None</li><li><i>1</i> - English</li><li><i>2</i> - Spanish</li><li><i>3</i> - German</li><li><i>4</i> - French</li><li><i>5</i> - Romanian</li><li><i>6</i> - Norwegian</li><li><i>7</i> - Bulgarian</li><li><i>8</i> - Italian</li><li><i>9</i> - Danish</li><li><i>10</i> - Polish</li><li><i>11</i> - Portuguese</li><li><i>12</i> - Czech</li><li><i>13</i> - Dutch</li><li><i>14</i> - Swedish</li><li><i>15</i> - Russian</li></ul> |
[optional] |
locale |
str |
|
[optional] |
authentication_retry_count |
int |
|
[optional] |
from boldsign.models.document_signer import DocumentSigner
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentSigner from a JSON string
document_signer_instance = DocumentSigner.from_json(json)
# print the JSON string representation of the object
print(DocumentSigner.to_json())
# convert the object into a dict
document_signer_dict = document_signer_instance.to_dict()
# create an instance of DocumentSigner from a dict
document_signer_from_dict = DocumentSigner.from_dict(document_signer_dict)
[Back to Model list] [Back to API list] [Back to README]