Interface PasswordAuthenticationMethod

interface PasswordAuthenticationMethod {
    created_at: string;
    id: string;
    identity_user_id: string;
    last_password_reset?: string;
    type: "password";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • AuthenticationMethodBase
    • PasswordAuthenticationMethod

Properties

created_at: string
id: string
identity_user_id: string
last_password_reset?: string
type: "password"
usage: ("primary" | "secondary")[]