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)