PaginationDtoMovementCardDto
Represents paginated results.
content object[]
The list of items in the current page.
Array [
operationIdstring
Unique identifier of the operation
Example:
12345operationCodestring
Operation code
Example:
TRX-001operationNumberstring
Operation number
Example:
123456789operationDatestring
Date of the operation
Example:
12-11-2024operationDescriptionstring
Description of the operation
Example:
07000 RETRAIT (ATM)debitDatestring
Date of debit
Example:
12-11-2024transactionDirectionstring
Transaction direction, (CREDIT or DEBIT)
Example:
DlocalOperationAmountstring
Operation amount in local currency
Example:
100formattedLocalOperationAmountstring
Formatted operation amount in local currency
Example:
100,00originalOperationAmountstring
Operation amount in original currency
Example:
120formattedOriginalOperationAmountstring
Formatted operation amount
Example:
120,00merchantstring
Merchant or vendor name
Example:
0300000040 GAB STAR CSABAHcurrencystring
Currency of the transaction
Example:
EURoperationTypestring
Type of operation
Example:
PURCHASE]
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:
10PaginationDtoMovementCardDto
{
"content": [
{
"operationId": "12345",
"operationCode": "TRX-001",
"operationNumber": "123456789",
"operationDate": "12-11-2024",
"operationDescription": "07000 RETRAIT (ATM)",
"debitDate": "12-11-2024",
"transactionDirection": "D",
"localOperationAmount": "100",
"formattedLocalOperationAmount": "100,00",
"originalOperationAmount": "120",
"formattedOriginalOperationAmount": "120,00",
"merchant": "0300000040 GAB STAR CSABAH",
"currency": "EUR",
"operationType": "PURCHASE"
}
],
"totalElements": 100,
"totalPages": 10,
"number": 0,
"size": 10
}