| Name |
Type |
Description |
Notes |
| template_id |
str |
|
|
| document_labels |
List[str] |
|
[optional] |
| template_labels |
List[str] |
|
[optional] |
| on_behalf_of |
str |
|
[optional] |
from boldsign.models.template_tag import TemplateTag
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateTag from a JSON string
template_tag_instance = TemplateTag.from_json(json)
# print the JSON string representation of the object
print(TemplateTag.to_json())
# convert the object into a dict
template_tag_dict = template_tag_instance.to_dict()
# create an instance of TemplateTag from a dict
template_tag_from_dict = TemplateTag.from_dict(template_tag_dict)
[Back to Model list] [Back to API list] [Back to README]