PermissionLookupSubjectResponse is the response message for the LookupSubject method in the Permission service.
Name | Type | Description | Notes |
---|---|---|---|
subject_ids | List[str] | List of identifiers for subjects 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_subject_response import PermissionLookupSubjectResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PermissionLookupSubjectResponse from a JSON string
permission_lookup_subject_response_instance = PermissionLookupSubjectResponse.from_json(json)
# print the JSON string representation of the object
print(PermissionLookupSubjectResponse.to_json())
# convert the object into a dict
permission_lookup_subject_response_dict = permission_lookup_subject_response_instance.to_dict()
# create an instance of PermissionLookupSubjectResponse from a dict
permission_lookup_subject_response_from_dict = PermissionLookupSubjectResponse.from_dict(permission_lookup_subject_response_dict)