class Exlibris::Primo::WebService::Response::GetTags
Public Instance Methods
everybody_tags()click to toggle source
# File lib/exlibris/primo/web_service/response/tags.rb, line 21defeverybody_tags@everybody_tags||=xml.root.xpath("//tags_reviews:EverybodyTags/tags_reviews:Tag", response_namespaces).collect { |tag|Exlibris::Primo::Tag.new(:raw_xml=>tag.to_xml) }
end
my_tags()click to toggle source
# File lib/exlibris/primo/web_service/response/tags.rb, line 16defmy_tags@my_tags||=xml.root.xpath("//tags_reviews:MyTags/tags_reviews:Tag", response_namespaces).collect { |tag|Exlibris::Primo::Tag.new(:raw_xml=>tag.to_xml) }
end