Class: SDM::WorkflowRolesCreateRequest
- Inherits:
-
Object
- Object
- SDM::WorkflowRolesCreateRequest
- Defined in:
- lib/models/porcelain.rb
Overview
WorkflowRolesCreateRequest specifies the workflowID and roleID of a new workflow role to be created.
Instance Attribute Summary collapse
-
#workflow_role ⇒ Object
Parameters to define the new WorkflowRole.
Instance Method Summary collapse
-
#initialize(workflow_role: nil) ⇒ WorkflowRolesCreateRequest
constructor
A new instance of WorkflowRolesCreateRequest.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(workflow_role: nil) ⇒ WorkflowRolesCreateRequest
Returns a new instance of WorkflowRolesCreateRequest.
16054 16055 16056 16057 16058 |
# File 'lib/models/porcelain.rb', line 16054 def initialize( workflow_role: nil ) @workflow_role = workflow_role == nil ? nil : workflow_role end |
Instance Attribute Details
#workflow_role ⇒ Object
Parameters to define the new WorkflowRole.
16052 16053 16054 |
# File 'lib/models/porcelain.rb', line 16052 def workflow_role @workflow_role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
16060 16061 16062 16063 16064 16065 16066 |
# File 'lib/models/porcelain.rb', line 16060 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |