Class: SDM::ApprovalWorkflowApproverListResponse
- Inherits:
-
Object
- Object
- SDM::ApprovalWorkflowApproverListResponse
- Defined in:
- lib/models/porcelain.rb
Overview
ApprovalWorkflowApproverListResponse returns a list of ApprovalWorkflowApprover records that meet the criteria of an ApprovalWorkflowApproverListRequest.
Instance Attribute Summary collapse
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(rate_limit: nil) ⇒ ApprovalWorkflowApproverListResponse
constructor
A new instance of ApprovalWorkflowApproverListResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(rate_limit: nil) ⇒ ApprovalWorkflowApproverListResponse
Returns a new instance of ApprovalWorkflowApproverListResponse.
3552 3553 3554 3555 3556 |
# File 'lib/models/porcelain.rb', line 3552 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
3550 3551 3552 |
# File 'lib/models/porcelain.rb', line 3550 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
3558 3559 3560 3561 3562 3563 3564 |
# File 'lib/models/porcelain.rb', line 3558 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 |