Class: RockRMS::Response::TransactionDetail

Inherits:
Base
  • Object
show all
Defined in:
lib/rock_rms/response/transaction_detail.rb

Constant Summary collapse

MAP =
{
  id: 'Id',
  fund: 'Account',
  fund_id: 'AccountId',
  amount: 'Amount'
}.freeze

Instance Attribute Summary

Attributes inherited from Base

#data

Instance Method Summary collapse

Methods inherited from Base

format, #format, #initialize, #to_h

Constructor Details

This class inherits a constructor from RockRMS::Response::Base

Instance Method Details

#format_single(response) ⇒ Object



11
12
13
14
15
# File 'lib/rock_rms/response/transaction_detail.rb', line 11

def format_single(response)
  response        = to_h(MAP, response)
  response[:fund] = Fund.format(response[:fund])
  response
end