Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 996 Bytes

File metadata and controls

31 lines (22 loc) · 996 Bytes

DNSFilterQueryTime

Properties

Name Type Description Notes
key str
operator str
value int

Example

from instana_client.models.dns_filter_query_time import DNSFilterQueryTime

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

# convert the object into a dict
dns_filter_query_time_dict = dns_filter_query_time_instance.to_dict()
# create an instance of DNSFilterQueryTime from a dict
dns_filter_query_time_from_dict = DNSFilterQueryTime.from_dict(dns_filter_query_time_dict)

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