Represents the response from a login attempt with a password.

interface LoginWithPasswordResponse {
    accesstoken: string;
    description: string;
    idtoken: string;
    refreshtoken: string;
    status: string;
}

Hierarchy (View Summary)

Properties

accesstoken: string
description: string
idtoken: string
refreshtoken: string
status: string