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.
8940 8941 8942 8943 8944 |
# File 'lib/models/porcelain.rb', line 8940 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
8938 8939 8940 |
# File 'lib/models/porcelain.rb', line 8938 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8946 8947 8948 8949 8950 8951 8952 |
# File 'lib/models/porcelain.rb', line 8946 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 |