Skip to main content

PaginationDtoFavoriteTransferResponse

Represents paginated results.

content object[]

The list of items in the current page.

  • Array [
  • idinteger<int64>

    Favorite ID

    Example: 1
    debitAccountstring

    Account to be debited

    Example: FR7612345678901234567890123
    beneficiaryAccountstring

    Beneficiary account number

    Example: FR7698765432109876543210987
    amountnumber

    Transfer amount

    Example: 9100.5
    amountFormattedstring

    Transfer amount formatted

    Example: 9 100 , 50
    labelstring

    Transfer description

    Example: Monthly payment
    aliasstring

    Custom alias

    Example: My Monthly Transfer
    statusstring

    Favorite status

    Possible values: [ACTIVE, DELETED]

    Example: ACTIVE
    createdAtstring<date-time>

    Creation date

    updatedAtstring<date-time>

    Last modification date

  • ]
  • totalElementsinteger<int64>

    The total number of elements across all pages.

    Example: 100
    totalPagesinteger<int32>

    The total number of pages available.

    Example: 10
    numberinteger<int32>

    The current page number (zero-based).

    Example: 0
    sizeinteger<int32>

    The number of items per page.

    Example: 10
    PaginationDtoFavoriteTransferResponse
    {
    "content": [
    {
    "id": 1,
    "debitAccount": "FR7612345678901234567890123",
    "beneficiaryAccount": "FR7698765432109876543210987",
    "amount": 9100.5,
    "amountFormatted": "9 100 , 50",
    "label": "Monthly payment",
    "alias": "My Monthly Transfer",
    "status": "ACTIVE",
    "createdAt": "2024-07-29T15:51:28.071Z",
    "updatedAt": "2024-07-29T15:51:28.071Z"
    }
    ],
    "totalElements": 100,
    "totalPages": 10,
    "number": 0,
    "size": 10
    }