Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

Endpoint.md

File metadata and controls

33 lines (24 loc) · 1.07 KB

Endpoint

Properties

Name Type Description Notes
name str
network_mapping NetworkMapping The per-endpoint network mapping. Depending on Endpoint type, only ClientNetworkTags or ServerNetworkTags will be used. [optional]
type str
id str
links List[APILink] [optional]

Example

from cyperf.models.endpoint import Endpoint

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

# convert the object into a dict
endpoint_dict = endpoint_instance.to_dict()
# create an instance of Endpoint from a dict
endpoint_from_dict = Endpoint.from_dict(endpoint_dict)

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