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.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, rate_limit: nil) ⇒ AccountGrantDeleteResponse
Returns a new instance of AccountGrantDeleteResponse.
1239 1240 1241 1242 1243 1244 1245 |
# File 'lib/models/porcelain.rb', line 1239 def initialize( meta: nil, rate_limit: nil ) @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#meta ⇒ Object
Reserved for future use.
1235 1236 1237 |
# File 'lib/models/porcelain.rb', line 1235 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1237 1238 1239 |
# File 'lib/models/porcelain.rb', line 1237 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1247 1248 1249 1250 1251 1252 1253 |
# File 'lib/models/porcelain.rb', line 1247 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 |