Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

ClearPortsOwnershipOperation

Properties

Name Type Description Notes
controllers List[PortsByController] The controllers that the ports are part of. [optional]

Example

from cyperf.models.clear_ports_ownership_operation import ClearPortsOwnershipOperation

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

# convert the object into a dict
clear_ports_ownership_operation_dict = clear_ports_ownership_operation_instance.to_dict()
# create an instance of ClearPortsOwnershipOperation from a dict
clear_ports_ownership_operation_from_dict = ClearPortsOwnershipOperation.from_dict(clear_ports_ownership_operation_dict)

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