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.
17273 17274 17275 17276 17277 |
# File 'lib/models/porcelain.rb', line 17273 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.
17271 17272 17273 |
# File 'lib/models/porcelain.rb', line 17271 def workflow_role @workflow_role end |
Instance Method Details
#to_json(options = {}) ⇒ Object
17279 17280 17281 17282 17283 17284 17285 |
# File 'lib/models/porcelain.rb', line 17279 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 |