Class: Ubill::Account
- Inherits:
-
Object
- Object
- Ubill::Account
- Includes:
- Concerns::Configurable
- Defined in:
- lib/ubill/account.rb
Instance Method Summary collapse
Methods included from Concerns::Configurable
Instance Method Details
#bic(value = nil) ⇒ Object
17 18 19 20 |
# File 'lib/ubill/account.rb', line 17 def bic(value=nil) @bic = value unless value.nil? @bic end |
#iban(value = nil) ⇒ Object
12 13 14 15 |
# File 'lib/ubill/account.rb', line 12 def iban(value=nil) @iban = value unless value.nil? @iban end |
#recipient(value = nil) ⇒ Object
7 8 9 10 |
# File 'lib/ubill/account.rb', line 7 def recipient(value=nil) @recipient = value unless value.nil? @recipient end |