Class AccountTransactionList


  • public class AccountTransactionList
    extends Object
    AccountTransactionList
    • Constructor Detail

      • AccountTransactionList

        public AccountTransactionList()
    • Method Detail

      • getAccountCode

        public String getAccountCode()
        The code of the account.
        Returns:
        accountCode
      • setAccountCode

        public void setAccountCode​(String accountCode)
      • getHasNextPage

        public Boolean getHasNextPage()
        Indicates whether there is a next page of transactions available.
        Returns:
        hasNextPage
      • setHasNextPage

        public void setHasNextPage​(Boolean hasNextPage)
      • getTransactions

        public List<Transaction> getTransactions()
        The list of transactions.
        Returns:
        transactions
      • setTransactions

        public void setTransactions​(List<Transaction> transactions)
      • equals

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

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

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

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