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
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def blocking @blocking end |
#category ⇒ Object
Returns the value of attribute category
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def category @category end |
#default_action ⇒ Object
Returns the value of attribute default_action
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def default_action @default_action end |
#diagnostics ⇒ Object
Returns the value of attribute diagnostics
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def diagnostics @diagnostics end |
#file ⇒ Object
Returns the value of attribute file
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def file @file end |
#id ⇒ Object
Returns the value of attribute id
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def id @id end |
#prompt ⇒ Object
Returns the value of attribute prompt
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def prompt @prompt end |
#prompt_required ⇒ Object
Returns the value of attribute prompt_required
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def prompt_required @prompt_required end |
#selected_action ⇒ Object
Returns the value of attribute selected_action
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def selected_action @selected_action end |
#severity ⇒ Object
Returns the value of attribute severity
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def severity @severity end |
#source ⇒ Object
Returns the value of attribute source
533 534 535 |
# File 'lib/kettle/jem.rb', line 533 def source @source end |
Instance Method Details
#to_h ⇒ Object
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 |
# File 'lib/kettle/jem.rb', line 546 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 |