Class: SDM::WorkflowApproversListResponse
- Inherits:
-
Object
- Object
- SDM::WorkflowApproversListResponse
- Defined in:
- lib/models/porcelain.rb
Overview
WorkflowApproversListResponse returns a list of WorkflowApprover records that meet the criteria of a WorkflowApproversListRequest.
Instance Attribute Summary collapse
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(rate_limit: nil) ⇒ WorkflowApproversListResponse
constructor
A new instance of WorkflowApproversListResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(rate_limit: nil) ⇒ WorkflowApproversListResponse
Returns a new instance of WorkflowApproversListResponse.
13206 13207 13208 13209 13210 |
# File 'lib/models/porcelain.rb', line 13206 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
13204 13205 13206 |
# File 'lib/models/porcelain.rb', line 13204 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
13212 13213 13214 13215 13216 13217 13218 |
# File 'lib/models/porcelain.rb', line 13212 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 |