Class: Kettle::Jem::DecisionEvaluation
- Inherits:
-
Struct
- Object
- Struct
- Kettle::Jem::DecisionEvaluation
- Defined in:
- lib/kettle/jem.rb
Instance Attribute Summary collapse
-
#blocking ⇒ Object
Returns the value of attribute blocking.
-
#category ⇒ Object
Returns the value of attribute category.
-
#default_action ⇒ Object
Returns the value of attribute default_action.
-
#diagnostics ⇒ Object
Returns the value of attribute diagnostics.
-
#file ⇒ Object
Returns the value of attribute file.
-
#id ⇒ Object
Returns the value of attribute id.
-
#prompt ⇒ Object
Returns the value of attribute prompt.
-
#prompt_required ⇒ Object
Returns the value of attribute prompt_required.
-
#selected_action ⇒ Object
Returns the value of attribute selected_action.
-
#severity ⇒ Object
Returns the value of attribute severity.
-
#source ⇒ Object
Returns the value of attribute source.
Instance Method Summary collapse
Instance Attribute Details
#blocking ⇒ Object
Returns the value of attribute blocking
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def blocking @blocking end |
#category ⇒ Object
Returns the value of attribute category
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def category @category end |
#default_action ⇒ Object
Returns the value of attribute default_action
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def default_action @default_action end |
#diagnostics ⇒ Object
Returns the value of attribute diagnostics
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def diagnostics @diagnostics end |
#file ⇒ Object
Returns the value of attribute file
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def file @file end |
#id ⇒ Object
Returns the value of attribute id
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def id @id end |
#prompt ⇒ Object
Returns the value of attribute prompt
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def prompt @prompt end |
#prompt_required ⇒ Object
Returns the value of attribute prompt_required
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def prompt_required @prompt_required end |
#selected_action ⇒ Object
Returns the value of attribute selected_action
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def selected_action @selected_action end |
#severity ⇒ Object
Returns the value of attribute severity
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def severity @severity end |
#source ⇒ Object
Returns the value of attribute source
534 535 536 |
# File 'lib/kettle/jem.rb', line 534 def source @source end |
Instance Method Details
#to_h ⇒ Object
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 |
# File 'lib/kettle/jem.rb', line 547 def to_h { id: id, category: category, file: file, default_action: default_action, selected_action: selected_action, source: source, severity: severity, blocking: blocking, diagnostics: diagnostics, prompt_required: prompt_required, prompt: prompt }.compact end |