Sha256: 998b318a3073c8be1284b57d0eed840398e4795afba51dbf7db572b087ac528b

Contents?: true

Size: 718 Bytes

Versions: 2

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true

module LedgerSync
  module Adaptors
    module QuickBooksOnline
      class Preferences < LedgerSync::Resource
        attribute :accounting_info, type: Type::Hash
        attribute :product_and_services, type: Type::Hash
        attribute :sales_forms, type: Type::Hash
        attribute :email_messages, type: Type::Hash
        attribute :vendor_and_purchases, type: Type::Hash
        attribute :time_tracking, type: Type::Hash
        attribute :tax, type: Type::Hash
        attribute :currency, type: Type::Hash
        attribute :report, type: Type::Hash
        attribute :other, type: Type::Hash

        def name
          'Preference'
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ledger_sync-1.3.5 lib/ledger_sync/adaptors/quickbooks_online/resources/preferences.rb
ledger_sync-1.3.4 lib/ledger_sync/adaptors/quickbooks_online/resources/preferences.rb