Sha256: bdf67fbc490cf1894d8363d5c6ff73ccf2d129a07cb68459dd0d084a40bf87fc
Contents?: true
Size: 1.03 KB
Versions: 2
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::QuantitativeValue,URI] define_property :occupancy, as: "occupancy", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] # @return [OpenActive::Models::Schema::BedType,OpenActive::Models::Schema::BedDetails,String,URI] define_property :bed, as: "bed", types: [ "OpenActive::Models::Schema::BedType", "OpenActive::Models::Schema::BedDetails", "string", "URI", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/suite.rb |
openactive-0.4.0 | lib/openactive/models/schema/suite.rb |