Represents the response from a login attempt with OTP.

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

Hierarchy (View Summary)

Properties

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