Class AccountHolderTransactionListRequest


  • public class AccountHolderTransactionListRequest
    extends Object
    AccountHolderTransactionListRequest
    • Constructor Detail

      • AccountHolderTransactionListRequest

        public AccountHolderTransactionListRequest()
    • Method Detail

      • getAccountHolderCode

        public String getAccountHolderCode()
        The code of the account holder that owns the account(s) of which retrieve the transaction list.
        Returns:
        accountHolderCode
      • setAccountHolderCode

        public void setAccountHolderCode​(String accountHolderCode)
      • getTransactionListsPerAccount

        public List<TransactionListForAccount> getTransactionListsPerAccount()
        A list of accounts to include in the transaction list. If left blank, the last fifty (50) transactions for all accounts of the account holder will be included.
        Returns:
        transactionListsPerAccount
      • getTransactionStatuses

        public List<AccountHolderTransactionListRequest.TransactionStatusesEnum> getTransactionStatuses()
        A list of statuses to include in the transaction list. If left blank, all transactions will be included. >Permitted values: >* `PendingCredit` - a pending balance credit. >* `CreditFailed` - a pending credit failure; the balance will not be credited. >* `Credited` - a credited balance. >* `PendingDebit` - a pending balance debit (e.g., a refund). >* `CreditClosed` - a pending credit closed; the balance will not be credited. >* `CreditSuspended` - a pending credit closed; the balance will not be credited. >* `DebitFailed` - a pending debit failure; the balance will not be debited. >* `Debited` - a debited balance (e.g., a refund). >* `DebitReversedReceived` - a pending refund reversal. >* `DebitedReversed` - a reversed refund. >* `ChargebackReceived` - a received chargeback request. >* `Chargeback` - a processed chargeback. >* `ChargebackReversedReceived` - a pending chargeback reversal. >* `ChargebackReversed` - a reversed chargeback. >* `Converted` - converted. >* `ManualCorrected` - manual booking/adjustment by Adyen. >* `Payout` - a payout. >* `PayoutReversed` - a reversed payout. >* `PendingFundTransfer` - a pending transfer of funds from one account to another. >* `FundTransfer` - a transfer of funds from one account to another.
        Returns:
        transactionStatuses
      • equals

        public boolean equals​(Object o)
        Return true if this AccountHolderTransactionListRequest object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static AccountHolderTransactionListRequest fromJson​(String jsonString)
                                                            throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of AccountHolderTransactionListRequest given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of AccountHolderTransactionListRequest
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to AccountHolderTransactionListRequest
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of AccountHolderTransactionListRequest to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException