UserDetails.md
1.23 KB
UserDetails
Properties
Name | Type | Description | Notes |
---|---|---|---|
user_name | str | ||
first_name | str | ||
middle_name | str | ||
last_name | str | ||
str | |||
user_type_id | int | ||
org_id | int | ||
user_id | int | ||
user_type | str | [optional] | |
org_name | str | [optional] | |
token | str | [optional] | |
token_expiry_at | str | [optional] | |
profile_pic | str | [optional] |
Example
from openapi_client.models.user_details import UserDetails
# TODO update the JSON string below
json = "{}"
# create an instance of UserDetails from a JSON string
user_details_instance = UserDetails.from_json(json)
# print the JSON string representation of the object
print(UserDetails.to_json())
# convert the object into a dict
user_details_dict = user_details_instance.to_dict()
# create an instance of UserDetails from a dict
user_details_from_dict = UserDetails.from_dict(user_details_dict)