Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

OutputNewBlockFilter

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
filter_id str A filter id to be used when calling getFilterChanges

Example

from qan.qan.output_new_block_filter import OutputNewBlockFilter

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

# convert the object into a dict
output_new_block_filter_dict = output_new_block_filter_instance.to_dict()
# create an instance of OutputNewBlockFilter from a dict
output_new_block_filter_from_dict = OutputNewBlockFilter.from_dict(output_new_block_filter_dict)

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