Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

File metadata and controls

30 lines (21 loc) · 1.33 KB

VPSV1DockerManagerLogEntryResource

Properties

Name Type Description Notes
timestamp str ISO 8601 formatted timestamp when the log entry was generated by the container [optional]
line str Raw log message content as output by the application inside the container [optional]

Example

from hostinger_api.models.vpsv1_docker_manager_log_entry_resource import VPSV1DockerManagerLogEntryResource

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

# convert the object into a dict
vpsv1_docker_manager_log_entry_resource_dict = vpsv1_docker_manager_log_entry_resource_instance.to_dict()
# create an instance of VPSV1DockerManagerLogEntryResource from a dict
vpsv1_docker_manager_log_entry_resource_from_dict = VPSV1DockerManagerLogEntryResource.from_dict(vpsv1_docker_manager_log_entry_resource_dict)

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