Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

HttpFilter.md

File metadata and controls

32 lines (23 loc) · 1.02 KB

HttpFilter

Route filtering settings

Properties

Name Type Description Notes
type str What notefiles this route applies to. [optional]
system_notefiles bool Whether system notefiles should be affected by this route [optional]
files List[str] [optional]

Example

from notehub_py.models.http_filter import HttpFilter

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

# convert the object into a dict
http_filter_dict = http_filter_instance.to_dict()
# create an instance of HttpFilter from a dict
http_filter_from_dict = HttpFilter.from_dict(http_filter_dict)

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