You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A filter id to be used when calling getFilterChanges
Example
fromqan.qan.output_new_pending_transaction_filterimportOutputNewPendingTransactionFilter# TODO update the JSON string belowjson="{}"# create an instance of OutputNewPendingTransactionFilter from a JSON stringoutput_new_pending_transaction_filter_instance=OutputNewPendingTransactionFilter.from_json(json)
# print the JSON string representation of the objectprint(OutputNewPendingTransactionFilter.to_json())
# convert the object into a dictoutput_new_pending_transaction_filter_dict=output_new_pending_transaction_filter_instance.to_dict()
# create an instance of OutputNewPendingTransactionFilter from a dictoutput_new_pending_transaction_filter_from_dict=OutputNewPendingTransactionFilter.from_dict(output_new_pending_transaction_filter_dict)