Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

PatchEnvironmentCompose400Response

Properties

Name Type Description Notes
message str [optional]
errors object [optional]

Example

from quantcdn.models.patch_environment_compose400_response import PatchEnvironmentCompose400Response

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

# convert the object into a dict
patch_environment_compose400_response_dict = patch_environment_compose400_response_instance.to_dict()
# create an instance of PatchEnvironmentCompose400Response from a dict
patch_environment_compose400_response_from_dict = PatchEnvironmentCompose400Response.from_dict(patch_environment_compose400_response_dict)

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