Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 809 Bytes

Fleet.md

File metadata and controls

31 lines (22 loc) · 809 Bytes

Fleet

Properties

Name Type Description Notes
uid str
label str
created datetime

Example

from notehub_py.models.fleet import Fleet

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

# convert the object into a dict
fleet_dict = fleet_instance.to_dict()
# create an instance of Fleet from a dict
fleet_from_dict = Fleet.from_dict(fleet_dict)

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