# wrapping class to hold a flickr group # class Flickr::People::Person::Group attr_accessor :nsid, :name, :eighteenplus # create a new instance of a flickr group. # # Params # * attributes (Required) # a hash of attributes used to set the initial values of the contact object def initialize(attributes) attributes.each do |k,v| send("#{k}=", v) end end end