class Dropbox::FullAccount
Attributes
country[R]
is_paired[R]
locale[R]
profile_photo_url[R]
referral_link[R]
Public Class Methods
new(attrs={})
click to toggle source
Calls superclass method
Dropbox::Account::new
# File lib/dropbox/account.rb, line 28 def initialize(attrs={}) @locale = attrs.delete('locale') @referral_link = attrs.delete('referral_link') @is_paired = attrs.delete('is_paired') @profile_photo_url = attrs.delete('profile_photo_url') @country = attrs.delete('country') super(attrs) end