Sha256: e162738bf067436781288f530344785738b2c74b204dbe4af07d7d1041446d71
Contents?: true
Size: 888 Bytes
Versions: 3
Compression:
Stored size: 888 Bytes
Contents
module OpenActive module Models module Schema class TaxiReservation < ::OpenActive::Models::Schema::Reservation # @!attribute type # @return [String] def type "schema:TaxiReservation" end # @return [OpenActive::Models::Schema::QuantitativeValue,int,URI,nil] define_property :party_size, as: "partySize", types: [ "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
Version data entries
3 entries across 3 versions & 1 rubygems