Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1016 Bytes

File metadata and controls

31 lines (22 loc) · 1016 Bytes

NetworkSegmentBase

Properties

Name Type Description Notes
name str
id str
network_tags List[str] A list of tags. [optional]

Example

from cyperf.models.network_segment_base import NetworkSegmentBase

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

# convert the object into a dict
network_segment_base_dict = network_segment_base_instance.to_dict()
# create an instance of NetworkSegmentBase from a dict
network_segment_base_from_dict = NetworkSegmentBase.from_dict(network_segment_base_dict)

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