map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface UserAdminEvent

    An event thrown by a UserAdminService.

    interface UserAdminEvent {
        authentication: Authentication;
        error?: unknown;
        login: boolean;
        logout: boolean;
        source: UserAdminService;
    }
    Index

    Properties

    authentication: Authentication

    Authentication data.

    error?: unknown

    Error during login/logout process.

    login: boolean

    True, if this event belongs to a login of a user..

    logout: boolean

    True, if this event belongs to a logout of a user.

    Event source.