Skip to main content
Version: 0.6

DatasetItemsListPage

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

Hierarchy

Index

Properties

count

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

The number of objects returned on this page.

desc

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

Indicates if the returned list is in descending order.

items

items: list[dict]

The list of dataset items returned on this page.

limit

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

The maximum number of objects to return, as specified in the API call.

model_config

model_config: Undefined

offset

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

The starting position of the first object returned, as specified in the API call.

total

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

The total number of objects that match the criteria of the API call.