Class: SDM::HealthcheckListResponse
- Inherits:
-
Object
- Object
- SDM::HealthcheckListResponse
- Defined in:
- lib/models/porcelain.rb
Overview
HealthcheckListResponse returns a list of Healthchecks that meet the criteria of a HealthcheckListRequest.
Instance Attribute Summary collapse
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(rate_limit: nil) ⇒ HealthcheckListResponse
constructor
A new instance of HealthcheckListResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(rate_limit: nil) ⇒ HealthcheckListResponse
Returns a new instance of HealthcheckListResponse.
6540 6541 6542 6543 6544 |
# File 'lib/models/porcelain.rb', line 6540 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
6538 6539 6540 |
# File 'lib/models/porcelain.rb', line 6538 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6546 6547 6548 6549 6550 6551 6552 |
# File 'lib/models/porcelain.rb', line 6546 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 |