Class: BankApi::Values::DepositEntry
- Inherits:
-
Object
- Object
- BankApi::Values::DepositEntry
- Defined in:
- lib/bank_api/values/deposit_entry.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#bank ⇒ Object
Returns the value of attribute bank.
-
#date ⇒ Object
Returns the value of attribute date.
-
#rut ⇒ Object
Returns the value of attribute rut.
-
#signature ⇒ Object
Returns the value of attribute signature.
Instance Method Summary collapse
-
#initialize(amount, date, rut, bank) ⇒ DepositEntry
constructor
A new instance of DepositEntry.
Constructor Details
#initialize(amount, date, rut, bank) ⇒ DepositEntry
Returns a new instance of DepositEntry.
5 6 7 8 9 10 |
# File 'lib/bank_api/values/deposit_entry.rb', line 5 def initialize(amount, date, rut, bank) @amount = amount @date = date @rut = rut @bank = bank end |
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def amount @amount end |
#bank ⇒ Object
Returns the value of attribute bank.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def bank @bank end |
#date ⇒ Object
Returns the value of attribute date.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def date @date end |
#rut ⇒ Object
Returns the value of attribute rut.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def rut @rut end |
#signature ⇒ Object
Returns the value of attribute signature.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def signature @signature end |