MonoCloud Management SDK
    Preparing search index...

    Interface PatchSessionOptionsRequest

    Patch Session Options Request: Used to update the user session configuration.

    PatchSessionOptionsRequest

    interface PatchSessionOptionsRequest {
        absolute_session_lifetime?: number;
        expiration_type?: SessionExpirationTypes;
        persistence_mode?: SessionPersistenceModes;
        sliding_session_lifetime?: number;
    }
    Index

    Properties

    absolute_session_lifetime?: number

    The maximum session lifetime after which the session expires regardless of activity or expiration type (in minutes).

    PatchSessionOptionsRequest

    expiration_type?: SessionExpirationTypes

    Determines whether the session expiration is extended on activity (sliding) or expires at a fixed time (absolute).

    PatchSessionOptionsRequest

    persistence_mode?: SessionPersistenceModes

    Determines whether the user session is persisted across browser restarts, expires on browser close, or is decided by the user.

    PatchSessionOptionsRequest

    sliding_session_lifetime?: number

    The session lifetime applied when using sliding expiration (in minutes). Each qualifying user interaction renews the session up to the absolute limit.

    PatchSessionOptionsRequest