Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

PermissionLookupEntityResponse.md

File metadata and controls

31 lines (22 loc) · 1.39 KB

PermissionLookupEntityResponse

PermissionLookupEntityResponse is the response message for the LookupEntity method in the Permission service.

Properties

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]

Example

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)

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