TemplateVariableListResponseDto

Properties

NameTypeDescriptionNotes
resultsList[TemplateVariable]
totalfloat

Example

from pdf_generator_client.models.template_variable_list_response_dto import TemplateVariableListResponseDto

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

# convert the object into a dict
template_variable_list_response_dto_dict = template_variable_list_response_dto_instance.to_dict()
# create an instance of TemplateVariableListResponseDto from a dict
template_variable_list_response_dto_from_dict = TemplateVariableListResponseDto.from_dict(template_variable_list_response_dto_dict)

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