Sha256: edff8fb520ce6ff7fc75f97cbfbdf8160b9428a0e0e2c10cb13a16e666fad9ba

Contents?: true

Size: 1015 Bytes

Versions: 4

Compression:

Stored size: 1015 Bytes

Contents

# frozen_string_literal: true

# https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/account
# Requires full update
module LedgerSync
  module Ledgers
    module QuickBooksOnline
      class Account
        module Operations
          class Update < Operation::FullUpdate
            class Contract < LedgerSync::Ledgers::Contract
              params do
                required(:external_id).maybe(:string)
                required(:ledger_id).filled(:string)
                required(:AccountSubType).filled(:string)
                required(:AccountType).filled(:string)
                required(:AcctNum).maybe(:string)
                required(:Active).maybe(:bool)
                required(:Classification).filled(:string)
                required(:Currency).maybe(:hash, Types::Reference)
                required(:Description).maybe(:string)
                required(:Name).filled(:string)
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ledger_sync-1.6.0 lib/ledger_sync/ledgers/quickbooks_online/account/operations/update.rb
ledger_sync-1.5.2 lib/ledger_sync/ledgers/quickbooks_online/account/operations/update.rb
ledger_sync-1.5.1 lib/ledger_sync/ledgers/quickbooks_online/account/operations/update.rb
ledger_sync-1.5.0 lib/ledger_sync/ledgers/quickbooks_online/account/operations/update.rb