Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 978 Bytes

File metadata and controls

32 lines (24 loc) · 978 Bytes

BackendIn

Properties

Name Type Description Notes
name str
location str
backend_type_id int
status BackendStatus
last_heartbeat datetime

Example

from compute_api_client.models.backend_in import BackendIn

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

# convert the object into a dict
backend_in_dict = backend_in_instance.to_dict()
# create an instance of BackendIn from a dict
backend_in_form_dict = backend_in.from_dict(backend_in_dict)

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