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
6905 6906 6907 6908 6909 |
# File 'lib/models/porcelain.rb', line 6905 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
6903 6904 6905 |
# File 'lib/models/porcelain.rb', line 6903 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6911 6912 6913 6914 6915 6916 6917 |
# File 'lib/models/porcelain.rb', line 6911 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 |