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
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def blocking @blocking end |
#category ⇒ Object
Returns the value of attribute category
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def category @category end |
#default_action ⇒ Object
Returns the value of attribute default_action
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def default_action @default_action end |
#diagnostics ⇒ Object
Returns the value of attribute diagnostics
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def diagnostics @diagnostics end |
#file ⇒ Object
Returns the value of attribute file
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def file @file end |
#id ⇒ Object
Returns the value of attribute id
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def id @id end |
#prompt ⇒ Object
Returns the value of attribute prompt
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def prompt @prompt end |
#prompt_required ⇒ Object
Returns the value of attribute prompt_required
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def prompt_required @prompt_required end |
#selected_action ⇒ Object
Returns the value of attribute selected_action
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def selected_action @selected_action end |
#severity ⇒ Object
Returns the value of attribute severity
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def severity @severity end |
#source ⇒ Object
Returns the value of attribute source
552 553 554 |
# File 'lib/kettle/jem.rb', line 552 def source @source end |
Instance Method Details
#to_h ⇒ Object
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 |
# File 'lib/kettle/jem.rb', line 565 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 |