EntityFilter is used to filter entities based on the type and ids.
Name | Type | Description | Notes |
---|---|---|---|
type | str | [optional] | |
ids | List[str] | [optional] |
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_from_dict = EntityFilter.from_dict(entity_filter_dict)