class Facebooker::FriendList

A simple representation of a friend list.

Attributes

name[RW]

Public Instance Methods

flid=(f) click to toggle source

We need this to be an integer, so do the conversion

# File lib/facebooker/models/friend_list.rb, line 12
def flid=(f)
  @flid= ( f.nil? ? nil : f.to_i)
end