| Name | Type | Description | Notes |
|---|---|---|---|
| cname_chain | List[str] | [optional] | |
| domain | str | ||
| events | List[ReportEvent] | [optional] | |
| min_ttl | int | [optional] | |
| resolved_ips | List[str] | [optional] |
fromrevengai.models.dns_queryimportDnsQuery# TODO update the JSON string belowjson="{}"# create an instance of DnsQuery from a JSON stringdns_query_instance=DnsQuery.from_json(json)
# print the JSON string representation of the objectprint(DnsQuery.to_json())
# convert the object into a dictdns_query_dict=dns_query_instance.to_dict()
# create an instance of DnsQuery from a dictdns_query_from_dict=DnsQuery.from_dict(dns_query_dict)