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

NameTypeDescriptionNotes
cname_chainList[str][optional]
domainstr
eventsList[ReportEvent][optional]
min_ttlint[optional]
resolved_ipsList[str][optional]

Example

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)

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