Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 879 Bytes

File metadata and controls

30 lines (21 loc) · 879 Bytes

Longhorn

Properties

Name Type Description Notes
enabled bool [optional] [default to True]
values object [optional]

Example

from platform_api_python_client.models.longhorn import Longhorn

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

# convert the object into a dict
longhorn_dict = longhorn_instance.to_dict()
# create an instance of Longhorn from a dict
longhorn_from_dict = Longhorn.from_dict(longhorn_dict)

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