Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 811 Bytes

TagsFilter.md

File metadata and controls

28 lines (19 loc) · 811 Bytes

TagsFilter

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.tags_filter import TagsFilter

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

# convert the object into a dict
tags_filter_dict = tags_filter_instance.to_dict()
# create an instance of TagsFilter from a dict
tags_filter_form_dict = tags_filter.from_dict(tags_filter_dict)

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