CustomerTransactionsRepository

interface CustomerTransactionsRepository

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
getById
Link copied to clipboard

Retrieve details about a specific transaction

abstract fun getById(transactionId: String): ApiResult<CustomerTransactionDetails>
hashCode
Link copied to clipboard
open override fun hashCode(): Int
list
Link copied to clipboard

Retrieve a list of previously executed transactions for the customer.

abstract fun list(paymentRequestId: String?, page: Int?, pageSize: Int?, endTime: OffsetDateTime?, startTime: OffsetDateTime?): ApiResult<CustomerTransactionSummaries>
toString
Link copied to clipboard
open override fun toString(): String