| Name | Type | Description | Notes |
|---|---|---|---|
| role_index | int | [optional] | |
| signer_name | str | [optional] | |
| signer_order | int | [optional] | |
| signer_email | str | [optional] | |
| host_email | str | [optional] | |
| private_message | str | [optional] | |
| authentication_code | str | [optional] | |
| enable_email_otp | bool | [optional] | |
| authentication_type | str | [optional] | |
| phone_number | PhoneNumber | [optional] | |
| delivery_mode | str | [optional] | |
| signer_type | str | [optional] | |
| signer_role | str | [optional] | |
| allow_field_configuration | bool | [optional] | |
| form_fields | List[FormField] | [optional] | |
| existing_form_fields | List[ExistingFormField] | [optional] | |
| identity_verification_settings | IdentityVerificationSettings | [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><li><i>16</i> - Japanese</li><li><i>17</i> - Thai</li><li><i>18</i> - SimplifiedChinese</li><li><i>19</i> - TraditionalChinese</li><li><i>20</i> - Korean</li></ul> | [optional] |
| locale | str | [optional] | |
| sign_type | str | [optional] | |
| group_id | str | [optional] | |
| recipient_notification_settings | RecipientNotificationSettings | [optional] | |
| authentication_retry_count | int | [optional] | |
| enable_qes | bool | [optional] | |
| authentication_settings | AuthenticationSettings | [optional] |
from boldsign.models.role import Role
# TODO update the JSON string below
json = "{}"
# create an instance of Role from a JSON string
role_instance = Role.from_json(json)
# print the JSON string representation of the object
print(Role.to_json())
# convert the object into a dict
role_dict = role_instance.to_dict()
# create an instance of Role from a dict
role_from_dict = Role.from_dict(role_dict)