| Name | Type | Description | Notes |
|---|---|---|---|
| subdomain | str | [optional] | |
| first_seen | str | [optional] | |
| last_seen | str | [optional] | |
| inactive_from | str | [optional] | |
| dns_records | DnsResponse | [optional] |
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)