Skip to content

Latest commit

 

History

History
68 lines (59 loc) · 3.1 KB

EmbeddedSendTemplateFormRequest.md

File metadata and controls

68 lines (59 loc) · 3.1 KB

EmbeddedSendTemplateFormRequest

Properties

Name Type Description Notes
files List[io.IOBase] [optional]
file_urls List[str] [optional]
redirect_url str [optional]
show_toolbar bool [optional]
send_view_option str [optional]
show_save_button bool [optional]
locale str [optional]
show_send_button bool [optional]
show_preview_button bool [optional]
show_navigation_buttons bool [optional]
send_link_valid_till datetime [optional]
show_tooltip bool [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]
enable_audit_trail_localization bool [optional]
download_file_name str [optional]

Example

from boldsign.models.embedded_send_template_form_request import EmbeddedSendTemplateFormRequest

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

# convert the object into a dict
embedded_send_template_form_request_dict = embedded_send_template_form_request_instance.to_dict()
# create an instance of EmbeddedSendTemplateFormRequest from a dict
embedded_send_template_form_request_from_dict = EmbeddedSendTemplateFormRequest.from_dict(embedded_send_template_form_request_dict)

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