interface UserDetail {
    become_admin?: boolean;
    f_uid?: number;
    first_seen?: string;
    impersonate?: string;
    last_seen_date?: string;
    private: boolean;
    suspended?: boolean;
    suspension_message?: string;
    username: string;
}

Properties

become_admin?: boolean

For admin accounts, whether the user is acting in an administrative capacity, i.e. acting as everyone

f_uid?: number

The user's filesystem user uid

first_seen?: string

The date and time the user was first seen (an ISO-8601 formatted string in UTC)

impersonate?: string

For admin accounts, whether the user is impersonating another user

last_seen_date?: string

The date the user was last seen

private: boolean

Set if the user's account is marked as private. Private accounts do not show up against general queries.

suspended?: boolean

True if the account is suspended

suspension_message?: string

If the account is suspended this typically displays a reason for suspension

username: string

The user's preferred username