Class: SDM::HealthcheckListResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

HealthcheckListResponse returns a list of Healthchecks that meet the criteria of a HealthcheckListRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

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_limitObject

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(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end