interface LoginResponse {
    accessToken: string;
    expiration: string;
    issuedBy: string;
    refreshToken: string;
    userId: string;
}

Properties

accessToken: string

The Vbrick access token used as "Authorization" header for subsequent requests

expiration: string

Token expiration time in seconds

issuedBy: string

The Token issuer, always "Vbrick"

refreshToken: string

The refresh token that can be used to refresh an access_token when it expires.

userId: string

User Id.