latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
Showing only changes of commit b0a24c6a74 - Show all commits

View File

@ -0,0 +1,21 @@
/**
* Defines a auth object
*/
export class Auth {
/**
* access_token - JWT shortterm access token
*/
access_token: string;
/**
* refresh_token - longterm refresh token (used for requesting new access tokens)
*/
refresh_token: string;
/**
* access_token_expires_at - unix timestamp of access token expiry
*/
access_token_expires_at: number;
/**
* refresh_token_expires_at - unix timestamp of access token expiry
*/
refresh_token_expires_at: number;
}