Skip to main content

PaginationDtoWidgetResponse

Represents paginated results.

content object[]

The list of items in the current page.

  • Array [
  • statusint32

    Status code of the response.

    Example: 1
    positionint32

    Position of the widget in the list.

    Example: 2
    widget object

    Widget details object.

    idstring

    Unique identifier of the widget.

    Example: 6
    namestring

    Name of the widget.

    Example: cards
  • ]
  • totalElementsint64

    The total number of elements across all pages.

    Example: 100
    totalPagesint32

    The total number of pages available.

    Example: 10
    numberint32

    The current page number (zero-based).

    Example: 0
    sizeint32

    The number of items per page.

    Example: 10
    PaginationDtoWidgetResponse
    {
    "content": [
    {
    "status": 1,
    "position": 2,
    "widget": {
    "id": "6",
    "name": "cards"
    }
    }
    ],
    "totalElements": 100,
    "totalPages": 10,
    "number": 0,
    "size": 10
    }