lib/openactive/models/schema/rating.rb in openactive-0.1.2 vs lib/openactive/models/schema/rating.rb in openactive-0.2.0

- old
+ new

@@ -7,40 +7,41 @@ def type "schema:Rating" end # @return [String] - define_property :rating_explanation, as: "ratingExplanation", types: [ + define_property :review_aspect, as: "reviewAspect", types: [ "string", ] - # @return [String] - define_property :review_aspect, as: "reviewAspect", types: [ + # @return [BigDecimal,String,nil] + define_property :rating_value, as: "ratingValue", types: [ + "Number", "string", + "null", ] # @return [String,BigDecimal,nil] define_property :worst_rating, as: "worstRating", types: [ "string", "Number", "null", ] - # @return [OpenActive::Models::Schema::Person,OpenActive::Models::Schema::Organization] + # @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: [ + # @return [String] + define_property :rating_explanation, as: "ratingExplanation", types: [ "string", - "Number", - "null", ] # @return [String,BigDecimal,nil] - define_property :rating_value, as: "ratingValue", types: [ + define_property :best_rating, as: "bestRating", types: [ "string", "Number", "null", ] end