Interface UnconfirmedSession

Contains information about an unconfirmed session.

interface UnconfirmedSession {
    @type: "unconfirmedSession";
    device_model: string;
    id: string;
    location: string;
    log_in_date: number;
}

Properties

@type: "unconfirmedSession"
device_model: string

Model of the device that was used for the session creation, as provided by the application.

id: string

Session identifier.

location: string

A human-readable description of the location from which the session was created, based on the IP address.

log_in_date: number

Point in time (Unix timestamp) when the user has logged in.