Sha256: b53e2a956021f94a0dca0a7c79e1e8aea98e39c9bd69af022d57991407bfa921
Contents?: true
Size: 435 Bytes
Versions: 7
Compression:
Stored size: 435 Bytes
Contents
# frozen_string_literal: true module LedgerSync module Adaptors module QuickBooksOnline module LedgerSerializerType class JournalEntryLineItemType < Adaptors::LedgerSerializerType::MappingType MAPPING = { 'debit' => 'Debit', 'credit' => 'Credit' }.freeze def self.mapping @mapping ||= MAPPING end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems