getUserLogins method

Future<TautulliUserLogins> getUserLogins({
  1. int? userId,
  2. TautulliUserLoginsOrderColumn? orderColumn,
  3. TautulliOrderDirection? orderDirection,
  4. int? start,
  5. int? length,
  6. String? search,
})

Handler for get_user_logins.

Get the data on Tautulli user login table.

Optional Parameters:

  • userId: A specific user to fetch login records for
  • orderColumn: The column order key for sorting the login records
  • orderDirection: The direction to sort the login records
  • start: Which row to start at (default: 0)
  • length: Number of records to return (default: 25)
  • search: A string to search for

Implementation

Future<TautulliUserLogins> getUserLogins({
    int? userId,
    TautulliUserLoginsOrderColumn? orderColumn,
    TautulliOrderDirection? orderDirection,
    int? start,
    int? length,
    String? search,
}) async => _commandGetUserLogins(
    _client,
    userId: userId,
    orderColumn: orderColumn,
    orderDirection: orderDirection,
    start: start,
    length: length,
    search: search,
);