Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

CreateTemplate201Response

Properties

Name Type Description Notes
response TemplateDefinition [optional]
meta object [optional]

Example

from pdf_generator_api_client.models.create_template201_response import CreateTemplate201Response

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

# convert the object into a dict
create_template201_response_dict = create_template201_response_instance.to_dict()
# create an instance of CreateTemplate201Response from a dict
create_template201_response_from_dict = CreateTemplate201Response.from_dict(create_template201_response_dict)

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