A user.

interface User {
    id: string;
    isTestStudent: boolean;
    name?: string;
    tenantId?: string;
    username: string;
}

Properties

id: string

The id of the user.

isTestStudent: boolean

Whether this is a test student.

name?: string

The name to display for this user.

tenantId?: string

The id of the tenant that this user is a member of.

username: string

The login name of the user.