PermissionLookupEntityResponse is the response message for the LookupEntity method in the Permission service.
Name | Type | Description | Notes |
---|---|---|---|
entity_ids | List[str] | List of identifiers for entities that match the lookup. | [optional] |
continuous_token | str | continuous_token is a string that can be used to paginate and retrieve the next set of results. | [optional] |
from permify.models.permission_lookup_entity_response import PermissionLookupEntityResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PermissionLookupEntityResponse from a JSON string
permission_lookup_entity_response_instance = PermissionLookupEntityResponse.from_json(json)
# print the JSON string representation of the object
print(PermissionLookupEntityResponse.to_json())
# convert the object into a dict
permission_lookup_entity_response_dict = permission_lookup_entity_response_instance.to_dict()
# create an instance of PermissionLookupEntityResponse from a dict
permission_lookup_entity_response_from_dict = PermissionLookupEntityResponse.from_dict(permission_lookup_entity_response_dict)