Sha256: e4c5d8ac2ffae56690e532ac49960d64b81f87a132bd8779fd209c36ac419a15
Contents?: true
Size: 653 Bytes
Versions: 18
Compression:
Stored size: 653 Bytes
Contents
module CQM # ClauseResult is used to store clause result information in IndividualResult class ClauseResult include Mongoid::Document include Mongoid::Timestamps # Library the clause this result is for is in field :library_name, type: String # Statment the clause this result is for is in field :statement_name, type: String # LocalId of the clause this result is for field :localId, type: String # Final, processed result of raw calculation field :final, type: String # Raw result of clause calculation field :raw # Relations to other model classes embedded_in :individual_result end end
Version data entries
18 entries across 18 versions & 1 rubygems