arxiv-api-wrapper - v2.1.2
    Preparing search index...

    Interface OaiResumptionToken

    Resumption token for paginated list responses.

    interface OaiResumptionToken {
        value: string;
        expirationDate?: string;
        completeListSize?: number;
        cursor?: number;
    }
    Index

    Properties

    value: string

    Opaque token value to pass to the next request.

    expirationDate?: string

    When the token expires (UTC).

    completeListSize?: number

    Total size of the complete list (may be approximate).

    cursor?: number

    Cursor position (number of elements returned so far).