Name |
Type |
Description |
Notes |
id |
int |
Template id |
[optional] |
name |
str |
Template name |
[optional] |
type |
str |
Template type |
[optional] |
from fattureincloud_python_sdk.models.document_template import DocumentTemplate
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentTemplate from a JSON string
document_template_instance = DocumentTemplate.from_json(json)
# print the JSON string representation of the object
print(DocumentTemplate.to_json())
# convert the object into a dict
document_template_dict = document_template_instance.to_dict()
# create an instance of DocumentTemplate from a dict
document_template_from_dict = DocumentTemplate.from_dict(document_template_dict)
[Back to Model list] [Back to API list] [Back to README]