class Etsy::Profile

Profile

Represents a profile resource of an Etsy user.

Public Instance Methods

joined_at() click to toggle source

Time that this user joined Etsy

# File lib/etsy/profile.rb, line 41
def joined_at
  Time.at(joined)
end
materials() click to toggle source
# File lib/etsy/profile.rb, line 35
def materials
  favorite_materials ? favorite_materials.split(',') : []
end
seller?() click to toggle source
# File lib/etsy/profile.rb, line 45
def seller?
  is_seller
end