Class: ProcessingNodeScore
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- ProcessingNodeScore
- Defined in:
- lib/msf/models/processing_node_score.rb
Overview
ActiveRecord model of MSF ProcessingNodeScore
Example:
ProcessingNodeScore.first.score_name
Class Method Summary collapse
Instance Method Summary collapse
- #description ⇒ Object
- #format_string ⇒ Object
- #friendly_name ⇒ Object
- #hidden ⇒ Object
- #is_main_score ⇒ Object
- #processing_node_id ⇒ Object
- #score_category ⇒ Object
- #score_guid ⇒ Object
- #score_id ⇒ Object
- #score_name ⇒ Object
Class Method Details
.primary_key ⇒ Object
10 11 12 |
# File 'lib/msf/models/processing_node_score.rb', line 10 def self.primary_key :ScoreID end |
.table_name ⇒ Object
7 8 9 |
# File 'lib/msf/models/processing_node_score.rb', line 7 def self.table_name :ProcessingNodeScores end |
Instance Method Details
#description ⇒ Object
25 26 27 |
# File 'lib/msf/models/processing_node_score.rb', line 25 def description self.Description end |
#format_string ⇒ Object
28 29 30 |
# File 'lib/msf/models/processing_node_score.rb', line 28 def format_string self.FormatString end |
#friendly_name ⇒ Object
22 23 24 |
# File 'lib/msf/models/processing_node_score.rb', line 22 def friendly_name self.FriendlyName end |
#hidden ⇒ Object
34 35 36 |
# File 'lib/msf/models/processing_node_score.rb', line 34 def hidden self.Hidden end |
#is_main_score ⇒ Object
37 38 39 |
# File 'lib/msf/models/processing_node_score.rb', line 37 def is_main_score self.IsMainScore end |
#processing_node_id ⇒ Object
13 14 15 |
# File 'lib/msf/models/processing_node_score.rb', line 13 def processing_node_id self.ProcessingNodeID end |
#score_category ⇒ Object
31 32 33 |
# File 'lib/msf/models/processing_node_score.rb', line 31 def score_category self.ScoreCategory end |
#score_guid ⇒ Object
40 41 42 |
# File 'lib/msf/models/processing_node_score.rb', line 40 def score_guid self.ScoreGUID end |
#score_id ⇒ Object
16 17 18 |
# File 'lib/msf/models/processing_node_score.rb', line 16 def score_id self.ScoreID end |
#score_name ⇒ Object
19 20 21 |
# File 'lib/msf/models/processing_node_score.rb', line 19 def score_name self.ScoreName end |