Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

AttributeDefinition.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

AttributeDefinition

The AttributeDefinition message provides detailed information about a specific attribute.

Properties

Name Type Description Notes
name str The name of the attribute, which follows a specific string pattern and has a maximum byte size. [optional]
type AttributeType [optional]

Example

from permify.models.attribute_definition import AttributeDefinition

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

# convert the object into a dict
attribute_definition_dict = attribute_definition_instance.to_dict()
# create an instance of AttributeDefinition from a dict
attribute_definition_from_dict = AttributeDefinition.from_dict(attribute_definition_dict)

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