Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 891 Bytes

UserList.md

File metadata and controls

29 lines (21 loc) · 891 Bytes

UserList

Properties

Name Type Description Notes
results List[User] [optional]
metadata Metadata [optional]

Example

from neurostore_sdk.models.user_list import UserList

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

# convert the object into a dict
user_list_dict = user_list_instance.to_dict()
# create an instance of UserList from a dict
user_list_form_dict = user_list.from_dict(user_list_dict)

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