Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 829 Bytes

NameServer.md

File metadata and controls

29 lines (20 loc) · 829 Bytes

NameServer

Properties

Name Type Description Notes
name str [optional]

Example

from cyperf.models.name_server import NameServer

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

# convert the object into a dict
name_server_dict = name_server_instance.to_dict()
# create an instance of NameServer from a dict
name_server_from_dict = NameServer.from_dict(name_server_dict)

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