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.
-
#client ⇒ Object
Returns the value of attribute client.
-
#date ⇒ Object
Returns the value of attribute date.
-
#rut ⇒ Object
Returns the value of attribute rut.
-
#signature ⇒ Object
Returns the value of attribute signature.
-
#time ⇒ Object
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize(amount, date, time, rut, bank, client) ⇒ DepositEntry
constructor
A new instance of DepositEntry.
Constructor Details
#initialize(amount, date, time, rut, bank, client) ⇒ DepositEntry
Returns a new instance of DepositEntry.
5 6 7 8 9 10 11 12 |
# File 'lib/bank_api/values/deposit_entry.rb', line 5 def initialize(amount, date, time, rut, bank, client) @amount = amount @date = date @time = time @rut = rut @bank = bank @client = client 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 |
#client ⇒ Object
Returns the value of attribute client.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def client @client 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 |
#time ⇒ Object
Returns the value of attribute time.
3 4 5 |
# File 'lib/bank_api/values/deposit_entry.rb', line 3 def time @time end |