Class: SDM::AccountGrantCreateResponse
- Inherits:
-
Object
- Object
- SDM::AccountGrantCreateResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGrantCreateResponse reports how the AccountGrants were created in the system.
Instance Attribute Summary collapse
-
#account_grant ⇒ Object
The created 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) ⇒ AccountGrantCreateResponse
constructor
A new instance of AccountGrantCreateResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_grant: nil, meta: nil, rate_limit: nil) ⇒ AccountGrantCreateResponse
Returns a new instance of AccountGrantCreateResponse.
1356 1357 1358 1359 1360 1361 1362 1363 1364 |
# File 'lib/models/porcelain.rb', line 1356 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 created AccountGrant.
1350 1351 1352 |
# File 'lib/models/porcelain.rb', line 1350 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
1352 1353 1354 |
# File 'lib/models/porcelain.rb', line 1352 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1354 1355 1356 |
# File 'lib/models/porcelain.rb', line 1354 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1366 1367 1368 1369 1370 1371 1372 |
# File 'lib/models/porcelain.rb', line 1366 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 |