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.
13340 13341 13342 13343 13344 |
# File 'lib/models/porcelain.rb', line 13340 def initialize( rate_limit: nil ) @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#rate_limit ⇒ Object
Rate limit information.
13338 13339 13340 |
# File 'lib/models/porcelain.rb', line 13338 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
13346 13347 13348 13349 13350 13351 13352 |
# File 'lib/models/porcelain.rb', line 13346 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 |