| Name |
Type |
Description |
Notes |
| index |
int |
|
|
| name |
str |
|
[optional] |
| default_signer_name |
str |
|
[optional] |
| default_signer_email |
str |
|
[optional] |
| signer_order |
int |
|
[optional] |
| signer_type |
str |
|
[optional] |
| host_email |
str |
|
[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] |
| default_group_id |
str |
|
[optional] |
| impose_authentication |
str |
|
[optional] |
| phone_number |
PhoneNumber |
|
[optional] |
| delivery_mode |
str |
|
[optional] |
| allow_field_configuration |
bool |
|
[optional] |
| form_fields |
List[FormField] |
|
[optional] |
| allow_role_edit |
bool |
|
[optional] |
| allow_role_delete |
bool |
|
[optional] |
| recipient_notification_settings |
RecipientNotificationSettings |
|
[optional] |
| enable_qes |
bool |
|
[optional] |
from boldsign.models.template_role import TemplateRole
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateRole from a JSON string
template_role_instance = TemplateRole.from_json(json)
# print the JSON string representation of the object
print(TemplateRole.to_json())
# convert the object into a dict
template_role_dict = template_role_instance.to_dict()
# create an instance of TemplateRole from a dict
template_role_from_dict = TemplateRole.from_dict(template_role_dict)
[Back to Model list] [Back to API list] [Back to README]