Class IbanAccountIdentification

    • Constructor Detail

      • IbanAccountIdentification

        public IbanAccountIdentification()
    • Method Detail

      • bic

        public IbanAccountIdentification bic​(String bic)
        The bank's 8- or 11-character BIC or SWIFT code.
        Parameters:
        bic - The bank's 8- or 11-character BIC or SWIFT code.
        Returns:
        the current IbanAccountIdentification instance, allowing for method chaining
      • getBic

        public String getBic()
        The bank's 8- or 11-character BIC or SWIFT code.
        Returns:
        bic The bank's 8- or 11-character BIC or SWIFT code.
      • setBic

        public void setBic​(String bic)
        The bank's 8- or 11-character BIC or SWIFT code.
        Parameters:
        bic - The bank's 8- or 11-character BIC or SWIFT code.
      • iban

        public IbanAccountIdentification iban​(String iban)
        The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
        Parameters:
        iban - The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
        Returns:
        the current IbanAccountIdentification instance, allowing for method chaining
      • getIban

        public String getIban()
        The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
        Returns:
        iban The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
      • setIban

        public void setIban​(String iban)
        The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
        Parameters:
        iban - The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
      • setIncludeNullValues

        public void setIncludeNullValues​(boolean includeNullValues)
        Sets whether null values should be explicitly serialized in the JSON payload. Default is false.
        Overrides:
        setIncludeNullValues in class BankAccountIdentification
      • fromJson

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

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of IbanAccountIdentification to an JSON string
        Overrides:
        toJson in class BankAccountIdentification
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException