Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.37 KB

File metadata and controls

31 lines (23 loc) · 1.37 KB

Filter

Filter applied to route data. Controls which notefiles are sent through the route.

Properties

Name Type Description Notes
files List[str] List of notefile names or patterns to filter on. [optional]
system_notefiles bool Whether system notefiles should be included. [optional]
type str Type of filter to apply (corresponds to `hublib.NotefileFilterType`). [optional]

Example

from notehub_py.models.filter import Filter

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

# convert the object into a dict
filter_dict = filter_instance.to_dict()
# create an instance of Filter from a dict
filter_from_dict = Filter.from_dict(filter_dict)

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