Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

File metadata and controls

29 lines (20 loc) · 1.22 KB

ThreadsSearchProfilesGet200ResponseData

Properties

Name Type Description Notes
items List[ThreadsUser]

Example

from unifapi.models.threads_search_profiles_get200_response_data import ThreadsSearchProfilesGet200ResponseData

# TODO update the JSON string below
json = "{}"
# create an instance of ThreadsSearchProfilesGet200ResponseData from a JSON string
threads_search_profiles_get200_response_data_instance = ThreadsSearchProfilesGet200ResponseData.from_json(json)
# print the JSON string representation of the object
print(ThreadsSearchProfilesGet200ResponseData.to_json())

# convert the object into a dict
threads_search_profiles_get200_response_data_dict = threads_search_profiles_get200_response_data_instance.to_dict()
# create an instance of ThreadsSearchProfilesGet200ResponseData from a dict
threads_search_profiles_get200_response_data_from_dict = ThreadsSearchProfilesGet200ResponseData.from_dict(threads_search_profiles_get200_response_data_dict)

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