Name | Type | Description | Notes |
---|---|---|---|
title | str | ||
description | str | [optional] | |
document_title | str | [optional] | |
document_message | str | [optional] | |
files | List[io.IOBase] | [optional] | |
file_urls | List[str] | [optional] | |
roles | List[TemplateRole] | [optional] | |
allow_modify_files | bool | [optional] [default to True] | |
cc | List[DocumentCC] | [optional] | |
brand_id | str | [optional] | |
allow_message_editing | bool | [optional] [default to True] | |
allow_new_roles | bool | [optional] [default to True] | |
allow_new_files | bool | [optional] [default to True] | |
enable_reassign | bool | [optional] [default to True] | |
enable_print_and_assign | bool | [optional] [default to False] | |
enable_signing_order | bool | [optional] [default to False] | |
document_info | List[DocumentInfo] | [optional] | |
use_text_tags | bool | [optional] [default to False] | |
text_tag_definitions | List[TextTagDefinition] | [optional] | |
auto_detect_fields | bool | [optional] [default to False] | |
on_behalf_of | str | [optional] | |
labels | List[str] | [optional] | |
template_labels | List[str] | [optional] | |
form_groups | List[FormGroup] | [optional] |
from boldsign.models.create_template_request import CreateTemplateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateTemplateRequest from a JSON string
create_template_request_instance = CreateTemplateRequest.from_json(json)
# print the JSON string representation of the object
print(CreateTemplateRequest.to_json())
# convert the object into a dict
create_template_request_dict = create_template_request_instance.to_dict()
# create an instance of CreateTemplateRequest from a dict
create_template_request_from_dict = CreateTemplateRequest.from_dict(create_template_request_dict)