Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] |
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)