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.
1264 1265 1266 1267 1268 1269 1270 |
# File 'lib/models/porcelain.rb', line 1264 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.
1260 1261 1262 |
# File 'lib/models/porcelain.rb', line 1260 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1262 1263 1264 |
# File 'lib/models/porcelain.rb', line 1262 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1272 1273 1274 1275 1276 1277 1278 |
# File 'lib/models/porcelain.rb', line 1272 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 |