Class: SDM::AccountGrantGetResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantGetResponse returns a requested AccountGrant.
Instance Attribute Summary collapse
-
#account_grant ⇒ Object
The requested AccountGrant.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
constructor
A new instance of AccountGrantGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
Returns a new instance of AccountGrantGetResponse.
1337 1338 1339 1340 1341 1342 1343 1344 1345 |
# File 'lib/models/porcelain.rb', line 1337 def initialize( account_grant: nil, meta: nil, rate_limit: nil ) @account_grant = account_grant == nil ? nil : account_grant @meta = == nil ? nil : @rate_limit = rate_limit == nil ? nil : rate_limit end |
Instance Attribute Details
#account_grant ⇒ Object
The requested AccountGrant.
1331 1332 1333 |
# File 'lib/models/porcelain.rb', line 1331 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
1333 1334 1335 |
# File 'lib/models/porcelain.rb', line 1333 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1335 1336 1337 |
# File 'lib/models/porcelain.rb', line 1335 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1347 1348 1349 1350 1351 1352 1353 |
# File 'lib/models/porcelain.rb', line 1347 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 |