Skip to content

Latest commit

History

History
31 lines (22 loc) · 970 Bytes

File metadata and controls

31 lines (22 loc) · 970 Bytes

EntityFilter

EntityFilter is used to filter entities based on the type and ids.

Properties

NameTypeDescriptionNotes
typestr[optional]
idsList[str][optional]

Example

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)

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