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 / entity.rb
Size: Mime:
module Quickbooks
  module Model
    class Entity < BaseModel
      include NameEntity::Quality

      xml_accessor :type, :from => 'Type'
      xml_accessor :entity_ref, :from => 'EntityRef'

      reference_setters :entity_ref

      #== Validations
      validate :entity_type_is_valid

    end
  end
end