Class: SDM::OrganizationTestMFAResponse
- Inherits:
-
Object
- Object
- SDM::OrganizationTestMFAResponse
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(rate_limit: nil) ⇒ OrganizationTestMFAResponse
constructor
A new instance of OrganizationTestMFAResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(rate_limit: nil) ⇒ OrganizationTestMFAResponse
Returns a new instance of OrganizationTestMFAResponse.
13292 13293 13294 13295 13296 |
# File 'lib/models/porcelain.rb', line 13292 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
13290 13291 13292 |
# File 'lib/models/porcelain.rb', line 13290 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
13298 13299 13300 13301 13302 13303 13304 |
# File 'lib/models/porcelain.rb', line 13298 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 |