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.
5936 5937 5938 5939 5940 |
# File 'lib/models/porcelain.rb', line 5936 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
5934 5935 5936 |
# File 'lib/models/porcelain.rb', line 5934 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5942 5943 5944 5945 5946 5947 5948 |
# File 'lib/models/porcelain.rb', line 5942 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 |