lib/openactive/models/schema/taxi_reservation.rb in openactive-0.1.2 vs lib/openactive/models/schema/taxi_reservation.rb in openactive-0.2.0
- old
+ new
@@ -6,25 +6,27 @@
# @return [String]
def type
"schema:TaxiReservation"
end
- # @return [OpenActive::Models::Schema::Place]
- define_property :pickup_location, as: "pickupLocation", types: [
- "OpenActive::Models::Schema::Place",
- ]
-
- # @return [int,OpenActive::Models::Schema::QuantitativeValue,nil]
+ # @return [OpenActive::Models::Schema::QuantitativeValue,int,URI,nil]
define_property :party_size, as: "partySize", types: [
- "int",
"OpenActive::Models::Schema::QuantitativeValue",
+ "int",
+ "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",
]
end
end
end
end