Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1017 Bytes

File metadata and controls

33 lines (24 loc) · 1017 Bytes

Subdomain

Properties

Name Type Description Notes
subdomain str [optional]
first_seen str [optional]
last_seen str [optional]
inactive_from str [optional]
dns_records DnsResponse [optional]

Example

from whoisfreaks.models.subdomain import Subdomain

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

# convert the object into a dict
subdomain_dict = subdomain_instance.to_dict()
# create an instance of Subdomain from a dict
subdomain_from_dict = Subdomain.from_dict(subdomain_dict)

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