Files
plexjs/docs/sdk/models/operations/getrecentlyaddedrequest.md
2024-09-08 03:06:14 +00:00

3.9 KiB
Raw Blame History

GetRecentlyAddedRequest

Example Usage

import { GetRecentlyAddedRequest } from "@lukehagar/plexjs/sdk/models/operations";

let value: GetRecentlyAddedRequest = {
    xPlexContainerStart: 0,
    xPlexContainerSize: 50,
};

Fields

Field Type Required Description Example
xPlexContainerStart number The index of the first item to return. If not specified, the first item will be returned.
If the number of items exceeds the limit, the response will be paginated.
By default this is 0
0
xPlexContainerSize number The number of items to return. If not specified, all items will be returned.
If the number of items exceeds the limit, the response will be paginated.
By default this is 50
50