| Name | Type | Description | Notes |
|---|---|---|---|
| user | QueryQuery200ResponseDataUser | [optional] | |
| registry | QueryQuery200ResponseDataRegistry | [optional] | |
| projects | List[QueryQuery200ResponseDataProjectsInner] | Projects the queried user is linked to, scoped to the requesting custodian | [optional] |
from safepeopleregistry_api_sdk.models.query_query200_response_data import QueryQuery200ResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of QueryQuery200ResponseData from a JSON string
query_query200_response_data_instance = QueryQuery200ResponseData.from_json(json)
# print the JSON string representation of the object
print(QueryQuery200ResponseData.to_json())
# convert the object into a dict
query_query200_response_data_dict = query_query200_response_data_instance.to_dict()
# create an instance of QueryQuery200ResponseData from a dict
query_query200_response_data_from_dict = QueryQuery200ResponseData.from_dict(query_query200_response_data_dict)