ebay_client/ebay_client/core/pagination.py
claudi 389d72a136 Add tests for OAuth client and webhook notification handling
- Implement tests for `EbayOAuthClient` to verify authorization URL generation with configured scopes and token reuse logic.
- Add tests for `WebhookChallengeHandler` to ensure correct SHA256 response generation and for `WebhookSignatureParser` to validate extraction of known fields from signature strings.
2026-04-07 08:40:50 +02:00

15 lines
324 B
Python

from __future__ import annotations
from dataclasses import dataclass
from typing import Generic, TypeVar
T = TypeVar("T")
@dataclass(slots=True)
class ContinuationPage(Generic[T]):
items: list[T]
total: int | None = None
limit: int | None = None
next_token: str | None = None
href: str | None = None