EntityFilter is used to filter entities based on the type and ids.
from permify.models.entity_filter import EntityFilter
# TODO update the JSON string below
json = "{}"
# create an instance of EntityFilter from a JSON string
entity_filter_instance = EntityFilter.from_json(json)
# print the JSON string representation of the object
print EntityFilter.to_json()
# convert the object into a dict
entity_filter_dict = entity_filter_instance.to_dict()
# create an instance of EntityFilter from a dict
entity_filter_form_dict = entity_filter.from_dict(entity_filter_dict)