Class: SDM::ApprovalWorkflowStepGetResponse
- Inherits:
-
Object
- Object
- SDM::ApprovalWorkflowStepGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
ApprovalWorkflowStepGetResponse returns a requested ApprovalWorkflowStep.
Instance Attribute Summary collapse
-
#approval_workflow_step ⇒ Object
The requested ApprovalWorkflowStep.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(approval_workflow_step: nil, meta: nil, rate_limit: nil) ⇒ ApprovalWorkflowStepGetResponse
constructor
A new instance of ApprovalWorkflowStepGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(approval_workflow_step: nil, meta: nil, rate_limit: nil) ⇒ ApprovalWorkflowStepGetResponse
2724 2725 2726 2727 2728 2729 2730 2731 2732 |
# File 'lib/models/porcelain.rb', line 2724 def initialize( approval_workflow_step: nil, meta: nil, rate_limit: nil ) @approval_workflow_step = approval_workflow_step == nil ? nil : approval_workflow_step = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#approval_workflow_step ⇒ Object
The requested ApprovalWorkflowStep.
2718 2719 2720 |
# File 'lib/models/porcelain.rb', line 2718 def approval_workflow_step @approval_workflow_step end |
#meta ⇒ Object
Reserved for future use.
2720 2721 2722 |
# File 'lib/models/porcelain.rb', line 2720 def end |
#rate_limit ⇒ Object
Rate limit information.
2722 2723 2724 |
# File 'lib/models/porcelain.rb', line 2722 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
2734 2735 2736 2737 2738 2739 2740 |
# File 'lib/models/porcelain.rb', line 2734 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 |