Class: SDM::WorkflowRole

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

WorkflowRole links a role to a workflow. The linked roles indicate which roles a user must be a part of to request access to a resource via the workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, role_id: nil, workflow_id: nil) ⇒ WorkflowRole

Returns a new instance of WorkflowRole.



10061
10062
10063
10064
10065
10066
10067
10068
10069
# File 'lib/models/porcelain.rb', line 10061

def initialize(
  id: nil,
  role_id: nil,
  workflow_id: nil
)
  @id = id == nil ? "" : id
  @role_id = role_id == nil ? "" : role_id
  @workflow_id = workflow_id == nil ? "" : workflow_id
end

Instance Attribute Details

#idObject

Unique identifier of the WorkflowRole.



10055
10056
10057
# File 'lib/models/porcelain.rb', line 10055

def id
  @id
end

#role_idObject

The role id.



10057
10058
10059
# File 'lib/models/porcelain.rb', line 10057

def role_id
  @role_id
end

#workflow_idObject

The workflow id.



10059
10060
10061
# File 'lib/models/porcelain.rb', line 10059

def workflow_id
  @workflow_id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



10071
10072
10073
10074
10075
10076
10077
# File 'lib/models/porcelain.rb', line 10071

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end