Class: SDM::WorkflowApproversDeleteRequest

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

Overview

WorkflowApproversDeleteRequest specifies the ID of a WorkflowApprover to be deleted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil) ⇒ WorkflowApproversDeleteRequest



12849
12850
12851
12852
12853
# File 'lib/models/porcelain.rb', line 12849

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

Instance Attribute Details

#idObject

The unique identifier of the WorkflowApprover to delete.



12847
12848
12849
# File 'lib/models/porcelain.rb', line 12847

def id
  @id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



12855
12856
12857
12858
12859
12860
12861
# File 'lib/models/porcelain.rb', line 12855

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