Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

File metadata and controls

29 lines (21 loc) · 1.1 KB

PerformActionOnServerRequest

Действие над сервером

Properties

Name Type Description Notes
action object

Example

from timeweb_cloud_api.models.perform_action_on_server_request import PerformActionOnServerRequest

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

# convert the object into a dict
perform_action_on_server_request_dict = perform_action_on_server_request_instance.to_dict()
# create an instance of PerformActionOnServerRequest from a dict
perform_action_on_server_request_form_dict = perform_action_on_server_request.from_dict(perform_action_on_server_request_dict)

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