interface UserResponse {
    id?: string;
    links?: { self?: string };
    name: string;
    status?: "active" | "inactive";
}

Properties

Properties

id?: string

The ID of the user.

links?: { self?: string }
name: string

The name of the user.

status?: "active" | "inactive"

The status of a user. An inactive user won't have access to resources.

MMNEPVFCICPMFPCPTTAAATR