Class: TesoteSdk::Models::BulkAccountResult
- Inherits:
-
Struct
- Object
- Struct
- TesoteSdk::Models::BulkAccountResult
- Extended by:
- FromHash
- Defined in:
- lib/tesote_sdk/models.rb
Instance Attribute Summary collapse
-
#account_id ⇒ Object
Returns the value of attribute account_id.
-
#pagination ⇒ Object
Returns the value of attribute pagination.
-
#transactions ⇒ Object
Returns the value of attribute transactions.
Class Method Summary collapse
Methods included from FromHash
build_field, from_array, from_hash
Instance Attribute Details
#account_id ⇒ Object
Returns the value of attribute account_id
406 407 408 |
# File 'lib/tesote_sdk/models.rb', line 406 def account_id @account_id end |
#pagination ⇒ Object
Returns the value of attribute pagination
406 407 408 |
# File 'lib/tesote_sdk/models.rb', line 406 def pagination @pagination end |
#transactions ⇒ Object
Returns the value of attribute transactions
406 407 408 |
# File 'lib/tesote_sdk/models.rb', line 406 def transactions @transactions end |
Class Method Details
.build_field(key, value) ⇒ Object
409 410 411 412 413 414 415 |
# File 'lib/tesote_sdk/models.rb', line 409 def self.build_field(key, value) case key when 'transactions' then Transaction.from_array(value) when 'pagination' then Pagination.from_hash(value) else value end end |