Class: SDM::WorkflowApproversDeleteRequest
- Inherits:
-
Object
- Object
- SDM::WorkflowApproversDeleteRequest
- Defined in:
- lib/models/porcelain.rb
Overview
WorkflowApproversDeleteRequest specifies the ID of a WorkflowApprover to be deleted.
Instance Attribute Summary collapse
-
#id ⇒ Object
The unique identifier of the WorkflowApprover to delete.
Instance Method Summary collapse
-
#initialize(id: nil) ⇒ WorkflowApproversDeleteRequest
constructor
A new instance of WorkflowApproversDeleteRequest.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil) ⇒ WorkflowApproversDeleteRequest
Returns a new instance of WorkflowApproversDeleteRequest.
11370 11371 11372 11373 11374 |
# File 'lib/models/porcelain.rb', line 11370 def initialize( id: nil ) @id = id == nil ? "" : id end |
Instance Attribute Details
#id ⇒ Object
The unique identifier of the WorkflowApprover to delete.
11368 11369 11370 |
# File 'lib/models/porcelain.rb', line 11368 def id @id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
11376 11377 11378 11379 11380 11381 11382 |
# File 'lib/models/porcelain.rb', line 11376 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 |