Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.05 KB

File metadata and controls

36 lines (27 loc) · 1.05 KB

GetMeResponse

Properties

Name Type Description Notes
username str
user_id int
first_name str
last_name str
email str
creation datetime
tutorial_seen bool
role str

Example

from revengai.models.get_me_response import GetMeResponse

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

# convert the object into a dict
get_me_response_dict = get_me_response_instance.to_dict()
# create an instance of GetMeResponse from a dict
get_me_response_from_dict = GetMeResponse.from_dict(get_me_response_dict)

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