Class: SDM::AccountGetResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccountGetResponse returns a requested Account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, account: nil, rate_limit: nil) ⇒ AccountGetResponse

Returns a new instance of AccountGetResponse.



449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/models/porcelain.rb', line 449

def initialize(
	meta:nil \
,
	account:nil \
,
	rate_limit:nil \
)
	if meta != nil
		@meta = meta
	end
	if  != nil
		@account = 
	end
	if rate_limit != nil
		@rate_limit = rate_limit
	end
end

Instance Attribute Details

#accountObject

The requested Account.



446
447
448
# File 'lib/models/porcelain.rb', line 446

def 
  @account
end

#metaObject

Reserved for future use.



444
445
446
# File 'lib/models/porcelain.rb', line 444

def meta
  @meta
end

#rate_limitObject

Rate limit information.



448
449
450
# File 'lib/models/porcelain.rb', line 448

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



466
467
468
469
470
471
472
# File 'lib/models/porcelain.rb', line 466

def to_json(options={})
	hash = {}
	self.instance_variables.each do |var|
	    hash[var.id2name.delete_prefix('@')] = self.instance_variable_get var
	end
	hash.to_json
end