Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.63 KB

IamOAuthToken.md

File metadata and controls

22 lines (18 loc) · 1.63 KB

IamOAuthToken

The meta data for generating OAuth2 token of a user. It is created when user logged in via OAuth2 using Authorization Code grant and deleted upon logout, expiration timeout or manual deletion.

Properties

Name Type Description Notes
access_expiration_time datetime Expiration time for the JWT token to which it can be used for api calls. [optional] [readonly]
client_id str The identifier of the registered application to which the token belongs. [optional]
client_ip_address str The user agent IP address from which the auth token is launched. [optional] [readonly]
client_name str The name of the registered application to which the token belongs. [optional]
expiration_time datetime Expiration time for the JWT token to which it can be refreshed. [optional] [readonly]
last_login_client str The client address from which last login is initiated. [optional] [readonly]
last_login_time datetime The last login time for user. [optional] [readonly]
token_id str Token identifier. Not the Access Token itself. [optional] [readonly]
user_meta IamClientMeta [optional]
app_registration IamAppRegistration [optional]
permission IamPermission [optional]
user IamUser [optional]

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