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.
10146 10147 10148 10149 10150 |
# File 'lib/models/porcelain.rb', line 10146 def initialize( id: nil ) @id = id == nil ? "" : id end |
Instance Attribute Details
#id ⇒ Object
The unique identifier of the WorkflowApprover to delete.
10144 10145 10146 |
# File 'lib/models/porcelain.rb', line 10144 def id @id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10152 10153 10154 10155 10156 10157 10158 |
# File 'lib/models/porcelain.rb', line 10152 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 |