class Enlight::Models::CourseCatalogSearchHistory

Attributes

club_ids[RW]
first_name[RW]
last_name[RW]
num_results[RW]
organization_id[RW]
page_index[RW]
tags[RW]
text_filter[RW]
user_external_id[RW]
user_id[RW]

Public Instance Methods

tags=(value) click to toggle source
# File lib/enlight/models/course_catalog_search_history.rb, line 16
def tags=(value)
  if value.instance_of?(Array) && value.any?
    @tags = []
    value.each {|v| Enlight::Models::Tag.new(v)}
  else
    @tags = nil
  end
end