| Name | Type | Description | Notes |
|---|---|---|---|
| controllers | List[PortsByController] | The controllers that the ports are part of. | [optional] |
from cyperf.models.reboot_ports_operation import RebootPortsOperation
# TODO update the JSON string below
json = "{}"
# create an instance of RebootPortsOperation from a JSON string
reboot_ports_operation_instance = RebootPortsOperation.from_json(json)
# print the JSON string representation of the object
print(RebootPortsOperation.to_json())
# convert the object into a dict
reboot_ports_operation_dict = reboot_ports_operation_instance.to_dict()
# create an instance of RebootPortsOperation from a dict
reboot_ports_operation_from_dict = RebootPortsOperation.from_dict(reboot_ports_operation_dict)