Sha256: 9fe0617dd1fc9993512e9af816b8c4b93079fe14fee2c391f78450bed39baebf
Contents?: true
Size: 312 Bytes
Versions: 13
Compression:
Stored size: 312 Bytes
Contents
# frozen_string_literal: true require_relative 'invoice' module LedgerSync module QuickBooksOnline class PaymentLine < QuickBooksOnline::Resource attribute :Amount, type: Type::Integer references_many :LinkedTxn, to: [Invoice] def name self.Amount end end end end
Version data entries
13 entries across 13 versions & 1 rubygems