EntityFilter is used to filter entities based on the type and ids.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] | |
| ids | List[str] | [optional] |
frompermify_async.models.entity_filterimportEntityFilter# TODO update the JSON string belowjson="{}"# create an instance of EntityFilter from a JSON stringentity_filter_instance=EntityFilter.from_json(json)
# print the JSON string representation of the objectprint(EntityFilter.to_json())
# convert the object into a dictentity_filter_dict=entity_filter_instance.to_dict()
# create an instance of EntityFilter from a dictentity_filter_from_dict=EntityFilter.from_dict(entity_filter_dict)