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

- old
+ new

@@ -6,19 +6,21 @@ # @return [String] def type "schema:ChooseAction" end - # @return [OpenActive::Models::Schema::Thing,String] + # @return [OpenActive::Models::Schema::Thing,String,URI] define_property :option, as: "option", types: [ "OpenActive::Models::Schema::Thing", "string", + "URI", ] - # @return [OpenActive::Models::Schema::Thing,String] + # @return [String,OpenActive::Models::Schema::Thing,URI] define_property :action_option, as: "actionOption", types: [ - "OpenActive::Models::Schema::Thing", "string", + "OpenActive::Models::Schema::Thing", + "URI", ] end end end end