Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.05 KB

UserToken.md

File metadata and controls

32 lines (24 loc) · 1.05 KB

UserToken

A JWT token with represents the user.

Properties

Name Type Description Notes
account PermissionCollectionAccount [optional]
user_id str
token_id str The unique identifier for the token
token str The access token
links AccountLinks [optional]

Example

from authress.models.user_token import UserToken

json = "{}"
# create an instance of UserToken from a JSON string
user_token_instance = UserToken.from_json(json)
# print the JSON string representation of the object
print UserToken.to_json()

# convert the object into a dict
user_token_dict = user_token_instance.to_dict()
# create an instance of UserToken from a dict
user_token_from_dict = UserToken.from_dict(user_token_dict)

[API Models][API Endpoints][Back to Repo]