Interface IAuthenticateResponse

IAuthenticateResponse Interface representing an authentication response.

const authResponse: IAuthenticateResponse = {
refresh: "eyJ0eXAiOiJKV....kIjoyLCJpcCI6IjE3Mi4xOC4wLjEifQ.LJd44M3...-0CiH2gokd_OWGBN3UnI",
access: "eyJ0eXAiOiJKV1Q....JqdGkiOiI3ZmM0YWY2ZjY1N2Y0MDU5YWRlNTY3...iNjMxZSI8UpTDxOS_utTTZW36W0KgU"
};
interface IAuthenticateResponse {
    access: string;
    refresh: string;
}

Properties

Properties

access: string

The access token.

refresh: string

The refresh token.