Sha256: 8542d18c3c8709d0a38629501f2e6e291203de2454d0046ab2c223535c3389e4
Contents?: true
Size: 480 Bytes
Versions: 16
Compression:
Stored size: 480 Bytes
Contents
module RockRMS module Response class TransactionDetail < Base MAP = { id: 'Id', fee_amount: 'FeeAmount', fund: 'Account', fund_id: 'AccountId', amount: 'Amount', entity_type_id: 'EntityTypeId', entity_id: 'EntityId' }.freeze def format_single(response) response = to_h(MAP, response) response[:fund] = Fund.format(response[:fund]) response end end end end
Version data entries
16 entries across 16 versions & 1 rubygems