UserInfoParameters: {
    contacts?: UserInfoContact[];
    department?: string | null;
    id: string;
    info?: IStorage | null;
    name?: string | null;
    position?: string | null;
}

Parameters for constructing a user information object.

Type declaration

  • Optionalcontacts?: UserInfoContact[]

    A collection of the user's contact information entries.

  • Optionaldepartment?: string | null

    The user department.

  • id: string

    The user identifier.

  • Optionalinfo?: IStorage | null

    Additional user-related information as key-value pairs.

  • Optionalname?: string | null

    The user name.

  • Optionalposition?: string | null

    The user position or job title.