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
8118 8119 8120 8121 8122 |
# File 'lib/models/porcelain.rb', line 8118 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
8116 8117 8118 |
# File 'lib/models/porcelain.rb', line 8116 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8124 8125 8126 8127 8128 8129 8130 |
# File 'lib/models/porcelain.rb', line 8124 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 |