Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface ListUserSessionsRequestParameters

    {
    * include_totals: true,
    * from: "from",
    * take: 1
    * }
    interface ListUserSessionsRequestParameters {
        include_totals?: boolean | null;
        from?: string | null;
        take?: number | null;
    }
    Index
    include_totals?: boolean | null

    Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

    from?: string | null

    An optional cursor from which to start the selection (exclusive).

    take?: number | null

    Number of results per page. Defaults to 50.