Class: MendixBridge::Model::Microflow
- Inherits:
-
Data
- Object
- Data
- MendixBridge::Model::Microflow
- Defined in:
- lib/mendix_bridge/model.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#execute_roles ⇒ Object
readonly
Returns the value of attribute execute_roles.
-
#folder ⇒ Object
readonly
Returns the value of attribute folder.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parameters ⇒ Object
readonly
Returns the value of attribute parameters.
-
#return_type ⇒ Object
readonly
Returns the value of attribute return_type.
Instance Method Summary collapse
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def body @body end |
#execute_roles ⇒ Object (readonly)
Returns the value of attribute execute_roles
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def execute_roles @execute_roles end |
#folder ⇒ Object (readonly)
Returns the value of attribute folder
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def folder @folder end |
#name ⇒ Object (readonly)
Returns the value of attribute name
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def name @name end |
#parameters ⇒ Object (readonly)
Returns the value of attribute parameters
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def parameters @parameters end |
#return_type ⇒ Object (readonly)
Returns the value of attribute return_type
66 67 68 |
# File 'lib/mendix_bridge/model.rb', line 66 def return_type @return_type end |
Instance Method Details
#to_h ⇒ Object
74 75 76 77 78 79 80 81 82 83 |
# File 'lib/mendix_bridge/model.rb', line 74 def to_h { name:, parameters: parameters.map(&:to_h), return_type:, folder:, body:, execute_roles: }.compact end |