lib/openactive/models/schema/taxi_reservation.rb in openactive-0.3.0 vs lib/openactive/models/schema/taxi_reservation.rb in openactive-0.4.0

- old
+ new

@@ -6,27 +6,27 @@ # @return [String] def type "schema:TaxiReservation" end - # @return [int,OpenActive::Models::Schema::QuantitativeValue,URI,nil] - define_property :party_size, as: "partySize", types: [ - "int", - "OpenActive::Models::Schema::QuantitativeValue", - "URI", - "null", - ] - # @return [DateTime,nil] define_property :pickup_time, as: "pickupTime", types: [ "DateTime", "null", ] # @return [OpenActive::Models::Schema::Place,URI] define_property :pickup_location, as: "pickupLocation", types: [ "OpenActive::Models::Schema::Place", "URI", + ] + + # @return [OpenActive::Models::Schema::QuantitativeValue,int,URI,nil] + define_property :party_size, as: "partySize", types: [ + "OpenActive::Models::Schema::QuantitativeValue", + "int", + "URI", + "null", ] end end end end