| Name |
Type |
Description |
Notes |
| default_team_id |
int |
|
[optional] |
| first_name |
str |
|
|
| hide_example_binaries |
bool |
|
|
| last_name |
str |
|
|
| time_zone |
str |
|
|
| username |
str |
|
|
from revengai.models.user_profile import UserProfile
# TODO update the JSON string below
json = "{}"
# create an instance of UserProfile from a JSON string
user_profile_instance = UserProfile.from_json(json)
# print the JSON string representation of the object
print(UserProfile.to_json())
# convert the object into a dict
user_profile_dict = user_profile_instance.to_dict()
# create an instance of UserProfile from a dict
user_profile_from_dict = UserProfile.from_dict(user_profile_dict)
[Back to Model list] [Back to API list] [Back to README]