Class: Loqate::Bank::Branch
- Inherits:
-
Dry::Struct::Value
- Object
- Dry::Struct::Value
- Loqate::Bank::Branch
- Defined in:
- lib/loqate/bank/branch.rb
Overview
Result of a bank branch retrieval.
Instance Method Summary collapse
-
#bank ⇒ String
The name of the banking institution.
-
#bank_bic ⇒ String
The banking institution’s BIC, also know as the SWIFT BIC.
-
#branch ⇒ String
The name of the account holding branch.
-
#branch_bic ⇒ String
The branch’s BIC.
-
#chaps_supported ⇒ Boolean
Indicates that the account supports the CHAPS service.
-
#contact_address_line1 ⇒ String
Line 1 of the branch’s contact address.
-
#contact_address_line2 ⇒ String
Line 2 of the branch’s contact address.
-
#contact_fax ⇒ String
The branch’s contact fax number.
-
#contact_phone ⇒ String
The branch’s contact phone number.
-
#contact_post_town ⇒ String
The branch’s contact post town.
-
#contact_postcode ⇒ String
The branch’s contact postcode.
-
#faster_payments_supported ⇒ Boolean
Indicates that the account supports the faster payments service.
Instance Method Details
#bank ⇒ String
The name of the banking institution.
9 |
# File 'lib/loqate/bank/branch.rb', line 9 attribute :bank, Types::Strict::String |
#bank_bic ⇒ String
The banking institution’s BIC, also know as the SWIFT BIC.
15 |
# File 'lib/loqate/bank/branch.rb', line 15 attribute :bank_bic, Types::Strict::String |
#branch ⇒ String
The name of the account holding branch.
21 |
# File 'lib/loqate/bank/branch.rb', line 21 attribute :branch, Types::Strict::String |
#branch_bic ⇒ String
The branch’s BIC.
27 |
# File 'lib/loqate/bank/branch.rb', line 27 attribute :branch_bic, Types::Strict::String |
#chaps_supported ⇒ Boolean
Indicates that the account supports the CHAPS service.
76 |
# File 'lib/loqate/bank/branch.rb', line 76 attribute :chaps_supported, Types::Strict::Bool |
#contact_address_line1 ⇒ String
Line 1 of the branch’s contact address. NB: This is the address to be used for BACs enquiries and may be a contact centre rather than the branch’s address.
34 |
# File 'lib/loqate/bank/branch.rb', line 34 attribute :contact_address_line1, Types::Strict::String |
#contact_address_line2 ⇒ String
Line 2 of the branch’s contact address.
40 |
# File 'lib/loqate/bank/branch.rb', line 40 attribute :contact_address_line2, Types::Strict::String |
#contact_fax ⇒ String
The branch’s contact fax number.
64 |
# File 'lib/loqate/bank/branch.rb', line 64 attribute :contact_fax, Types::Strict::String |
#contact_phone ⇒ String
The branch’s contact phone number.
58 |
# File 'lib/loqate/bank/branch.rb', line 58 attribute :contact_phone, Types::Strict::String |
#contact_post_town ⇒ String
The branch’s contact post town.
46 |
# File 'lib/loqate/bank/branch.rb', line 46 attribute :contact_post_town, Types::Strict::String |
#contact_postcode ⇒ String
The branch’s contact postcode.
52 |
# File 'lib/loqate/bank/branch.rb', line 52 attribute :contact_postcode, Types::Strict::String |
#faster_payments_supported ⇒ Boolean
Indicates that the account supports the faster payments service.
70 |
# File 'lib/loqate/bank/branch.rb', line 70 attribute :faster_payments_supported, Types::Strict::Bool |