Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

TokenProxyUser

Serializer for User model for TokenProxyOutputSerializerData

Properties

Name Type Description Notes
user_id int Edx User ID
user_email str User's Edx Email
user_nicename str Username
user_display_name str User's display name
user_fullname str Edx Full Name [readonly]

Example

from iblai.models.token_proxy_user import TokenProxyUser

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

# convert the object into a dict
token_proxy_user_dict = token_proxy_user_instance.to_dict()
# create an instance of TokenProxyUser from a dict
token_proxy_user_from_dict = TokenProxyUser.from_dict(token_proxy_user_dict)

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