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(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
constructor
A new instance of AccountGrantGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantGetResponse
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/models/porcelain.rb', line 291 def initialize( meta: nil, account_grant: nil, rate_limit: nil ) if != nil @meta = end if account_grant != nil @account_grant = account_grant end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#account_grant ⇒ Object
The requested AccountGrant.
287 288 289 |
# File 'lib/models/porcelain.rb', line 287 def account_grant @account_grant end |
#meta ⇒ Object
Reserved for future use.
285 286 287 |
# File 'lib/models/porcelain.rb', line 285 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
289 290 291 |
# File 'lib/models/porcelain.rb', line 289 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
307 308 309 310 311 312 313 |
# File 'lib/models/porcelain.rb', line 307 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 |