Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 969 Bytes

File metadata and controls

31 lines (22 loc) · 969 Bytes

DnsInfoRequest

Properties

Name Type Description Notes
domain str Domain name
client_id str Client id
email str Email

Example

from workplace_client.models.dns_info_request import DnsInfoRequest

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

# convert the object into a dict
dns_info_request_dict = dns_info_request_instance.to_dict()
# create an instance of DnsInfoRequest from a dict
dns_info_request_from_dict = DnsInfoRequest.from_dict(dns_info_request_dict)

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