Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ValidateCompose422Response

Properties

Name Type Description Notes
error str [optional]

Example

from quantcdn.models.validate_compose422_response import ValidateCompose422Response

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

# convert the object into a dict
validate_compose422_response_dict = validate_compose422_response_instance.to_dict()
# create an instance of ValidateCompose422Response from a dict
validate_compose422_response_from_dict = ValidateCompose422Response.from_dict(validate_compose422_response_dict)

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