Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 927 Bytes

BackendPatch.md

File metadata and controls

29 lines (21 loc) · 927 Bytes

BackendPatch

Properties

Name Type Description Notes
status BackendStatus
last_heartbeat datetime

Example

from compute_api_client.models.backend_patch import BackendPatch

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

# convert the object into a dict
backend_patch_dict = backend_patch_instance.to_dict()
# create an instance of BackendPatch from a dict
backend_patch_form_dict = backend_patch.from_dict(backend_patch_dict)

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