PaginationDtoTypeCarteDto
Represents paginated results.
content object[]
The list of items in the current page.
Array [
cardCodestring
Card code
Example:
0250cardLabelstring
Card label
Example:
Visa Card]
totalElementsinteger<int64>
The total number of elements across all pages.
Example:
100totalPagesinteger<int32>
The total number of pages available.
Example:
10numberinteger<int32>
The current page number (zero-based).
Example:
0sizeinteger<int32>
The number of items per page.
Example:
10PaginationDtoTypeCarteDto
{
"content": [
{
"cardCode": "0250",
"cardLabel": "Visa Card"
}
],
"totalElements": 100,
"totalPages": 10,
"number": 0,
"size": 10
}