Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 994 Bytes

SlimUser.md

File metadata and controls

33 lines (24 loc) · 994 Bytes

SlimUser

Properties

Name Type Description Notes
email str
id str
name str [optional]
orgs List[Organization]
user_orgs List[UserOrganization]

Example

from trieve_py_client.models.slim_user import SlimUser

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

# convert the object into a dict
slim_user_dict = slim_user_instance.to_dict()
# create an instance of SlimUser from a dict
slim_user_form_dict = slim_user.from_dict(slim_user_dict)

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