Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1004 Bytes

File metadata and controls

33 lines (24 loc) · 1004 Bytes

DnsQuery

Properties

Name Type Description Notes
cname_chain List[str] [optional]
domain str
events List[ReportEvent] [optional]
min_ttl int [optional]
resolved_ips List[str] [optional]

Example

from revengai.models.dns_query import DnsQuery

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

# convert the object into a dict
dns_query_dict = dns_query_instance.to_dict()
# create an instance of DnsQuery from a dict
dns_query_from_dict = DnsQuery.from_dict(dns_query_dict)

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