Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

AttributeFilter.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

AttributeFilter

AttributeFilter is used to filter attributes based on the entity and attribute names.

Properties

Name Type Description Notes
entity EntityFilter [optional]
attributes List[str] [optional]

Example

from permify.models.attribute_filter import AttributeFilter

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

# convert the object into a dict
attribute_filter_dict = attribute_filter_instance.to_dict()
# create an instance of AttributeFilter from a dict
attribute_filter_from_dict = AttributeFilter.from_dict(attribute_filter_dict)

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