getRequests method
Future<OverseerrRequestPage>
getRequests({
- int? take,
- int? skip,
- OverseerrRequestFilterType? filter,
- OverseerrRequestSortType? sort,
- OverseerrUser? requestedBy,
Handler for request.
Returns all requests.
takea specific amount of requestsskipto a different pagesortthe incoming listfilterthe incoming listrequestBythe given user
Implementation
Future<OverseerrRequestPage> getRequests({
int? take,
int? skip,
OverseerrRequestFilterType? filter,
OverseerrRequestSortType? sort,
OverseerrUser? requestedBy,
}) async =>
_commandGetRequests(
_client,
take: take,
skip: skip,
sort: sort,
filter: filter,
requestedBy: requestedBy,
);