Name | Type | Description | Notes |
---|---|---|---|
template_id | str | [optional] | |
title | str | [optional] | |
description | str | [optional] | |
document_title | str | [optional] | |
document_message | str | [optional] | |
files | List[DocumentFiles] | [optional] | |
roles | List[Roles] | [optional] | |
form_groups | List[FormGroup] | [optional] | |
common_fields | List[TemplateFormFields] | [optional] | |
c_c_details | List[str] | [optional] | |
brand_id | str | [optional] | |
allow_message_editing | bool | [optional] | |
allow_new_roles | bool | [optional] | |
allow_new_files | bool | [optional] | |
allow_modify_files | bool | [optional] | |
enable_reassign | bool | [optional] | |
enable_print_and_sign | bool | [optional] | |
enable_signing_order | bool | [optional] | |
created_date | int | [optional] | |
created_by | TemplateSenderDetail | [optional] | |
shared_template_detail | List[TemplateSharedTemplateDetail] | [optional] | |
document_info | List[DocumentInfo] | [optional] | |
labels | List[str] | [optional] | |
template_labels | List[str] | [optional] | |
behalf_of | BehalfOf | [optional] | |
document_download_option | str | [optional] | |
recipient_notification_settings | RecipientNotificationSettings | [optional] |
from boldsign.models.template_properties import TemplateProperties
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateProperties from a JSON string
template_properties_instance = TemplateProperties.from_json(json)
# print the JSON string representation of the object
print(TemplateProperties.to_json())
# convert the object into a dict
template_properties_dict = template_properties_instance.to_dict()
# create an instance of TemplateProperties from a dict
template_properties_from_dict = TemplateProperties.from_dict(template_properties_dict)