Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

UpdateEnvironmentStateRequest

Properties

Name Type Description Notes
action str [optional]
image_tag str [optional]

Example

from quantcdn.models.update_environment_state_request import UpdateEnvironmentStateRequest

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

# convert the object into a dict
update_environment_state_request_dict = update_environment_state_request_instance.to_dict()
# create an instance of UpdateEnvironmentStateRequest from a dict
update_environment_state_request_from_dict = UpdateEnvironmentStateRequest.from_dict(update_environment_state_request_dict)

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