Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 993 Bytes

ComputedAttribute.md

File metadata and controls

30 lines (21 loc) · 993 Bytes

ComputedAttribute

ComputedAttribute defines a computed attribute which includes its name.

Properties

Name Type Description Notes
name str [optional]

Example

from permify.models.computed_attribute import ComputedAttribute

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

# convert the object into a dict
computed_attribute_dict = computed_attribute_instance.to_dict()
# create an instance of ComputedAttribute from a dict
computed_attribute_from_dict = ComputedAttribute.from_dict(computed_attribute_dict)

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