Constructs an instance of this DTO.
The JWT access token that can be attached in the bearer
authorization header of HTTP requests to indicate users
that are authenticated ("logged in").
Access tokens are always signed with the dApp's auth
secret and expire after 1 hour (one hour).
The JWT access token expiration timestamp. This timestamp
uses the UTC
timezone.
The JWT refresh token that can be attached in the bearer
authorization header of HTTP requests to /auth/token
to
indicate that a user's access token must be refreshed.
Refresh tokens are always signed with the dApp's auth
secret and expire after 1 year (one year).
The identifier of the account at the data provider API.
This is a unique identifier for the account on said platform.
Generated using TypeDoc
A DTO class that consists of an JWT access token payload. This DTO always contains an access token that is short-lived (1 hour) and a refresh token.
Access tokens are always signed with the dApp's auth secret and expire after 1 hour (one hour).
v0.3.0