module OpenActive module Models module Schema class Rating < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:Rating" end # @return [String] define_property :review_aspect, as: "reviewAspect", types: [ "string", ] # @return [String,BigDecimal,nil] define_property :worst_rating, as: "worstRating", types: [ "string", "Number", "null", ] # @return [OpenActive::Models::Schema::Person,OpenActive::Models::Schema::Organization,URI] define_property :author, as: "author", types: [ "OpenActive::Models::Schema::Person", "OpenActive::Models::Schema::Organization", "URI", ] # @return [String,BigDecimal,nil] define_property :best_rating, as: "bestRating", types: [ "string", "Number", "null", ] # @return [BigDecimal,String,nil] define_property :rating_value, as: "ratingValue", types: [ "Number", "string", "null", ] # @return [String] define_property :rating_explanation, as: "ratingExplanation", types: [ "string", ] end end end end