Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

QueryQuery200ResponseData

Properties

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]

Example

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)

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