MonoCloud Authentication SDK
    Preparing search index...

    Represents the lifetime information of a session, including the creation time (c), the last updated time (u), and optionally the expiration time (e).

    interface SessionLifetime {
        c: number;
        e?: number;
        u: number;
    }
    Index

    Properties

    c e? u

    Properties

    c: number

    The time at which the session was created (in epoch).

    e?: number

    Optional. The expiration time of the session (in epoch).

    u: number

    The time at which the session was last updated (in epoch).