Sha256: 889290122a33a7323339b503773bfefef31d5875260d7e4c91bfbd2aa042f2a0
Contents?: true
Size: 457 Bytes
Versions: 4
Compression:
Stored size: 457 Bytes
Contents
# frozen_string_literal: true require_relative 'journal_entry_line_detail' module LedgerSync module Ledgers module QuickBooksOnline class JournalEntryLine < QuickBooksOnline::Resource attribute :Amount, type: Type::Integer attribute :Description, type: Type::String references_one :JournalEntryLineDetail, to: JournalEntryLineDetail def name self.Description end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems