Name | Type | Description | Notes |
---|---|---|---|
results | List[User] | [optional] | |
metadata | Metadata | [optional] |
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)