Действие над сервером
| Name | Type | Description | Notes |
|---|---|---|---|
| action | object |
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)