Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

File metadata and controls

29 lines (20 loc) · 1.21 KB

ValidateTemplate200ResponseResponse

Properties

Name Type Description Notes
valid bool True if template configuration was valid [optional] [default to True]

Example

from pdf_generator_api_client.models.validate_template200_response_response import ValidateTemplate200ResponseResponse

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

# convert the object into a dict
validate_template200_response_response_dict = validate_template200_response_response_instance.to_dict()
# create an instance of ValidateTemplate200ResponseResponse from a dict
validate_template200_response_response_from_dict = ValidateTemplate200ResponseResponse.from_dict(validate_template200_response_response_dict)

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