Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 996 Bytes

Attribute.md

File metadata and controls

32 lines (23 loc) · 996 Bytes

Attribute

Attribute represents an attribute of an entity with a specific type and value.

Properties

Name Type Description Notes
entity Entity [optional]
attribute str [optional]
value Any [optional]

Example

from permify.models.attribute import Attribute

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

# convert the object into a dict
attribute_dict = attribute_instance.to_dict()
# create an instance of Attribute from a dict
attribute_from_dict = Attribute.from_dict(attribute_dict)

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