Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
quickbooks-ruby / lib / quickbooks / model / invoice_change.rb
Size: Mime:
module Quickbooks
  module Model
    # Refer to: https://developer.intuit.com/docs/0100_accounting/0300_developer_guides/change_data_capture
    class InvoiceChange < BaseModel
      XML_NODE = "Invoice"

      xml_accessor :id, :from => 'Id', :as => Integer
      xml_accessor :status, :from => '@status'
      xml_accessor :meta_data, :from => 'MetaData', :as => MetaData
    end
  end
end