Represents the event when user has been inactive for more then idleTimeout. This event payload will be passed as a parameter to the registered eventHandler that will be invoked by SDK

interface IdleTimeout {
    eventDate: Date;
    gracePeriod: number;
    sessionId: string;
}

Hierarchy (view full)

Properties

eventDate: Date

The date-time when the event was generated by SDK

gracePeriod: number

The grace period in milliseconds before the SDK will be shutdown.

sessionId: string

The unique 36 character internal id that represents the session.