Sha256: be57b505a092a4050d374a7ad4c64d3860247e110b79ea5813243e1f9c013dbd
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
module OpenActive module Models module Schema class Suite < ::OpenActive::Models::Schema::Accommodation # @!attribute type # @return [String] def type "schema:Suite" end # @return [OpenActive::Models::Schema::QuantitativeValue,BigDecimal,URI,nil] define_property :number_of_rooms, as: "numberOfRooms", types: [ "OpenActive::Models::Schema::QuantitativeValue", "Number", "URI", "null", ] # @return [OpenActive::Models::Schema::BedDetails,String,OpenActive::Models::Schema::BedType,URI] define_property :bed, as: "bed", types: [ "OpenActive::Models::Schema::BedDetails", "string", "OpenActive::Models::Schema::BedType", "URI", ] # @return [OpenActive::Models::Schema::QuantitativeValue,URI] define_property :occupancy, as: "occupancy", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/suite.rb |