Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

EmulatedRouter

Properties

Name Type Description Notes
emulated_router_ranges List[EmulatedRouterRange] [optional]
enabled bool
links List[APILink] [optional]

Example

from cyperf.models.emulated_router import EmulatedRouter

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

# convert the object into a dict
emulated_router_dict = emulated_router_instance.to_dict()
# create an instance of EmulatedRouter from a dict
emulated_router_from_dict = EmulatedRouter.from_dict(emulated_router_dict)

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