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.
1290 1291 1292 1293 1294 1295 1296 1297 1298 |
# File 'lib/models/porcelain.rb', line 1290 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.
1284 1285 1286 |
# File 'lib/models/porcelain.rb', line 1284 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
1286 1287 1288 |
# File 'lib/models/porcelain.rb', line 1286 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
1288 1289 1290 |
# File 'lib/models/porcelain.rb', line 1288 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1300 1301 1302 1303 1304 1305 1306 |
# File 'lib/models/porcelain.rb', line 1300 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 |