Class: SDM::AccountGrantDeleteResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantDeleteResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantDeleteResponse returns information about a AccountGrant 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) ⇒ AccountGrantDeleteResponse
constructor
A new instance of AccountGrantDeleteResponse.
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountGrantDeleteResponse
Returns a new instance of AccountGrantDeleteResponse.
247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'lib/models/porcelain.rb', line 247 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.
244 245 246 |
# File 'lib/models/porcelain.rb', line 244 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
246 247 248 |
# File 'lib/models/porcelain.rb', line 246 def rate_limit @rate_limit end |