Skip to content

Latest commit

 

History

History
63 lines (54 loc) · 2.97 KB

File metadata and controls

63 lines (54 loc) · 2.97 KB

SendForSignFromTemplateForm

Properties

Name Type Description Notes
files List[io.IOBase] [optional]
file_urls List[str] [optional]
document_id str [optional]
title str [optional]
message str [optional]
roles List[Role] [optional]
brand_id str [optional]
labels List[str] [optional]
disable_emails bool [optional]
disable_sms bool [optional] [default to False]
hide_document_id bool [optional]
reminder_settings ReminderSettings [optional]
cc List[DocumentCC] [optional]
expiry_days int [optional]
expiry_date_type str [optional]
expiry_value int [optional] [default to 60]
enable_print_and_sign bool [optional]
enable_reassign bool [optional]
enable_signing_order bool [optional]
disable_expiry_alert bool [optional]
document_info List[DocumentInfo] [optional]
on_behalf_of str [optional]
is_sandbox bool [optional]
role_removal_indices List[int] [optional]
document_download_option str [optional]
meta_data Dict[str, Optional[str]] [optional]
form_groups List[FormGroup] [optional]
remove_form_fields List[str] [optional]
recipient_notification_settings RecipientNotificationSettings [optional]
enable_audit_trail_localization bool [optional]
download_file_name str [optional]
scheduled_send_time int [optional]
allow_scheduled_send bool [optional] [default to False]
allowed_signature_types List[str] [optional]
group_signer_settings GroupSignerSettings [optional]

Example

from boldsign.models.send_for_sign_from_template_form import SendForSignFromTemplateForm

# TODO update the JSON string below
json = "{}"
# create an instance of SendForSignFromTemplateForm from a JSON string
send_for_sign_from_template_form_instance = SendForSignFromTemplateForm.from_json(json)
# print the JSON string representation of the object
print(SendForSignFromTemplateForm.to_json())

# convert the object into a dict
send_for_sign_from_template_form_dict = send_for_sign_from_template_form_instance.to_dict()
# create an instance of SendForSignFromTemplateForm from a dict
send_for_sign_from_template_form_from_dict = SendForSignFromTemplateForm.from_dict(send_for_sign_from_template_form_dict)

[Back to Model list] [Back to API list] [Back to README]