Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.61 KB

File metadata and controls

37 lines (28 loc) · 1.61 KB

FrontPanel

Properties

Name Type Description Notes
available_fan_out_modes List[str] A list with the current fanOut modes available for the front panel [optional]
fan_out_mode str The current fanOut mode of the front panel [optional]
health_details List[HealthIssue] A list with more details regarding the health of the front panel [optional]
healthy bool Whether the front panel has any health issue or not [optional]
id str The unique identifier of the front panel [optional]
links List[APILink] [optional]
name str A user-friendly display name for the front panel [optional]
ports List[Port] The front panel ports of the front panel [optional]
status str The current status of the front panel: ready or not ready [optional]

Example

from cyperf.models.front_panel import FrontPanel

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

# convert the object into a dict
front_panel_dict = front_panel_instance.to_dict()
# create an instance of FrontPanel from a dict
front_panel_from_dict = FrontPanel.from_dict(front_panel_dict)

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