Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.37 KB

AttributeReadResponse.md

File metadata and controls

31 lines (22 loc) · 1.37 KB

AttributeReadResponse

AttributeReadResponse defines the structure of the response to an attribute read request. It includes the attributes retrieved and a continuous token for handling result pagination.

Properties

Name Type Description Notes
attributes List[Attribute] attributes is a list of the attributes retrieved in the read operation. [optional]
continuous_token str continuous_token is used in the case of paginated reads to retrieve the next page of results. [optional]

Example

from permify.models.attribute_read_response import AttributeReadResponse

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

# convert the object into a dict
attribute_read_response_dict = attribute_read_response_instance.to_dict()
# create an instance of AttributeReadResponse from a dict
attribute_read_response_from_dict = AttributeReadResponse.from_dict(attribute_read_response_dict)

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