Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

TemplateVersionCollection

Properties

Name Type Description Notes
response List[TemplateVersion] [optional]
meta TemplateVersionCollectionMeta [optional]

Example

from pdf_generator_api_client.models.template_version_collection import TemplateVersionCollection

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

# convert the object into a dict
template_version_collection_dict = template_version_collection_instance.to_dict()
# create an instance of TemplateVersionCollection from a dict
template_version_collection_from_dict = TemplateVersionCollection.from_dict(template_version_collection_dict)

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