Class: SDM::AccountDeleteResponse
- Inherits:
-
Object
- Object
- SDM::AccountDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountDeleteResponse returns information about a Account that was deleted.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, rate_limit: nil) ⇒ AccountDeleteResponse
constructor
A new instance of AccountDeleteResponse.
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountDeleteResponse
Returns a new instance of AccountDeleteResponse.
395 396 397 398 399 400 401 402 403 404 405 406 |
# File 'lib/models/porcelain.rb', line 395 def initialize( meta:nil \ , rate_limit:nil \ ) if != nil @meta = end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
392 393 394 |
# File 'lib/models/porcelain.rb', line 392 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
394 395 396 |
# File 'lib/models/porcelain.rb', line 394 def rate_limit @rate_limit end |