SearchCreditcardTransactionRequestDto

data class SearchCreditcardTransactionRequestDto(var cardIds: MutableList<String>, var bookingType: SearchCreditcardTransactionRequestDto.BookingType? = null, var bookingDateFrom: OffsetDateTime? = null, var bookingDateTo: OffsetDateTime? = null, var amountMin: BigDecimal? = null, var amountMax: BigDecimal? = null, var purpose: String? = null)

Search parameter for the transaction list. cardIds is required. If the other fields are empty, all transactions of the specified cards will be returned.

Parameters

cardIds

One or more cardId's.

bookingType

Type of booking

bookingDateFrom

From-booking date of the transaction.

bookingDateTo

From-booking date time of the transaction.

amountMin

Minimal amount of a transaction

amountMax

Maximum amount of a transaction

purpose

Purpose of the transaction.

Constructors

Link copied to clipboard
constructor(cardIds: MutableList<String>, bookingType: SearchCreditcardTransactionRequestDto.BookingType? = null, bookingDateFrom: OffsetDateTime? = null, bookingDateTo: OffsetDateTime? = null, amountMin: BigDecimal? = null, amountMax: BigDecimal? = null, purpose: String? = null)

Types

Link copied to clipboard

Type of booking Values: BOOKED,PENDING

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard