Skip to main content

_BaseListPage

crawlee.base_storage_client._models._BaseListPage

Model for a single page of storage items returned from a collection list method.

Args: count: Count of the returned objects on this page. offset: The offset of the first object specified in the API call. limit: The limit on the number of returned objects specified in the API call. total: Total number of objects matching the API call criteria. desc: Whether the listing is descending or not.

Index

Properties

count

count: Annotated[int, Field(default=0)]

desc

desc: Annotated[bool, Field(default=False)]

limit

limit: Annotated[int, Field(default=0)]

model_config

model_config:

offset

offset: Annotated[int, Field(default=0)]

total

total: Annotated[int, Field(default=0)]