Sha256: b327ab743bafc9d8e4154a2f1491e2dc6813cbb4720dc1e0c1f9e0e384967e46
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
module OpenActive module Models module Schema class Game < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:Game" end # @return [OpenActive::Models::Schema::QuantitativeValue,URI] define_property :number_of_players, as: "numberOfPlayers", types: [ "OpenActive::Models::Schema::QuantitativeValue", "URI", ] # @return [OpenActive::Models::Schema::PostalAddress,OpenActive::Models::Schema::Place,URI] define_property :game_location, as: "gameLocation", types: [ "OpenActive::Models::Schema::PostalAddress", "OpenActive::Models::Schema::Place", "URI", ] # @return [OpenActive::Models::Schema::Thing,URI] define_property :game_item, as: "gameItem", types: [ "OpenActive::Models::Schema::Thing", "URI", ] # @return [OpenActive::Models::Schema::Thing,URI] define_property :character_attribute, as: "characterAttribute", types: [ "OpenActive::Models::Schema::Thing", "URI", ] # @return [OpenActive::Models::Schema::Thing,URI] define_property :quest, as: "quest", types: [ "OpenActive::Models::Schema::Thing", "URI", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.2.2 | lib/openactive/models/schema/game.rb |
openactive-0.2.1 | lib/openactive/models/schema/game.rb |
openactive-0.2.0 | lib/openactive/models/schema/game.rb |