Class CZLocalAccountIdentification


  • public class CZLocalAccountIdentification
    extends Object
    CZLocalAccountIdentification
    • Constructor Detail

      • CZLocalAccountIdentification

        public CZLocalAccountIdentification()
    • Method Detail

      • getAccountNumber

        public String getAccountNumber()
        The 2- to 16-digit bank account number (Číslo účtu) in the following format: - The optional prefix (předčíslí). - The required second part (základní část) which must be at least two non-zero digits. Examples: - **19-123457** (with prefix) - **123457** (without prefix) - **000019-0000123457** (with prefix, normalized) - **000000-0000123457** (without prefix, normalized)
        Returns:
        accountNumber
      • setAccountNumber

        public void setAccountNumber​(String accountNumber)
        The 2- to 16-digit bank account number (Číslo účtu) in the following format: - The optional prefix (předčíslí). - The required second part (základní část) which must be at least two non-zero digits. Examples: - **19-123457** (with prefix) - **123457** (without prefix) - **000019-0000123457** (with prefix, normalized) - **000000-0000123457** (without prefix, normalized)
        Parameters:
        accountNumber -
      • getBankCode

        public String getBankCode()
        The 4-digit bank code (Kód banky), without separators or whitespace.
        Returns:
        bankCode
      • setBankCode

        public void setBankCode​(String bankCode)
        The 4-digit bank code (Kód banky), without separators or whitespace.
        Parameters:
        bankCode -
      • equals

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

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

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

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