Sha256: 607afca2c4434c32684bb3a4794be21023ce8ca5aec6c1abbdc8e3712879148e
Contents?: true
Size: 512 Bytes
Versions: 45
Compression:
Stored size: 512 Bytes
Contents
module RockRMS module Response class TransactionDetail < Base MAP = { fee_amount: 'FeeAmount', fee_coverage_amount: 'FeeCoverageAmount', 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
45 entries across 45 versions & 1 rubygems