Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 962 Bytes

File metadata and controls

31 lines (23 loc) · 962 Bytes

ServerLog

Лог сервера

Properties

Name Type Description Notes
id object ID диска.
logged_at object Дата лога.
event object Событие сервера.

Example

from timeweb_cloud_api.models.server_log import ServerLog

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

# convert the object into a dict
server_log_dict = server_log_instance.to_dict()
# create an instance of ServerLog from a dict
server_log_form_dict = server_log.from_dict(server_log_dict)

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