module Fetcher class Microdata class UserComments < Fetcher::Microdata def initialize *args if args.length == 2 super *args else raise ArgumentError, "Wrong number of arguments #{args.length} and 2 needed" end @_type = 'http://schema.org/UserComments' end attribute :additionalType attribute :id attribute :commentText attribute :creator attribute :commentTime end end end