Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

OutputGetFilterLogs

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
logs List[ResponseLog] An array of log objects, or an empty array if nothing has changed since last poll

Example

from qan.qan.output_get_filter_logs import OutputGetFilterLogs

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

# convert the object into a dict
output_get_filter_logs_dict = output_get_filter_logs_instance.to_dict()
# create an instance of OutputGetFilterLogs from a dict
output_get_filter_logs_from_dict = OutputGetFilterLogs.from_dict(output_get_filter_logs_dict)

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