Class: SDM::AccountGetResponse
- Inherits:
-
Object
- Object
- SDM::AccountGetResponse
- Defined in:
- lib/models/porcelain.rb
Overview
AccountGetResponse returns a requested Account.
Instance Attribute Summary collapse
-
#account ⇒ Object
The requested Account.
-
#meta ⇒ Object
Reserved for future use.
-
#rate_limit ⇒ Object
Rate limit information.
Instance Method Summary collapse
-
#initialize(meta: nil, account: nil, rate_limit: nil) ⇒ AccountGetResponse
constructor
A new instance of AccountGetResponse.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(meta: nil, account: nil, rate_limit: nil) ⇒ AccountGetResponse
Returns a new instance of AccountGetResponse.
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
# File 'lib/models/porcelain.rb', line 442 def initialize( meta: nil, account: nil, rate_limit: nil ) if != nil @meta = end if account != nil @account = account end if rate_limit != nil @rate_limit = rate_limit end end |
Instance Attribute Details
#account ⇒ Object
The requested Account.
438 439 440 |
# File 'lib/models/porcelain.rb', line 438 def account @account end |
#meta ⇒ Object
Reserved for future use.
436 437 438 |
# File 'lib/models/porcelain.rb', line 436 def @meta end |
#rate_limit ⇒ Object
Rate limit information.
440 441 442 |
# File 'lib/models/porcelain.rb', line 440 def rate_limit @rate_limit end |
Instance Method Details
#to_json(options = {}) ⇒ Object
458 459 460 461 462 463 464 |
# File 'lib/models/porcelain.rb', line 458 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 |