Sha256: c92a71f185d812e85c5db6de7102a6b27900816b52808247f9b0a5dc686c525f
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
module OpenActive module Models module Schema class HowToDirection < ::OpenActive::Models::Schema::ListItem # @!attribute type # @return [String] def type "schema:HowToDirection" end # @return [URI,OpenActive::Models::Schema::MediaObject] define_property :after_media, as: "afterMedia", types: [ "URI", "OpenActive::Models::Schema::MediaObject", ] # @return [OpenActive::Models::Schema::HowToSupply,String,URI] define_property :supply, as: "supply", types: [ "OpenActive::Models::Schema::HowToSupply", "string", "URI", ] # @return [URI,OpenActive::Models::Schema::MediaObject] define_property :during_media, as: "duringMedia", types: [ "URI", "OpenActive::Models::Schema::MediaObject", ] # @return [ActiveSupport::Duration,URI,nil] define_property :total_time, as: "totalTime", types: [ "DateInterval", "URI", "null", ] # @return [URI,OpenActive::Models::Schema::MediaObject] define_property :before_media, as: "beforeMedia", types: [ "URI", "OpenActive::Models::Schema::MediaObject", ] # @return [OpenActive::Models::Schema::HowToTool,String,URI] define_property :tool, as: "tool", types: [ "OpenActive::Models::Schema::HowToTool", "string", "URI", ] # @return [ActiveSupport::Duration,URI,nil] define_property :prep_time, as: "prepTime", types: [ "DateInterval", "URI", "null", ] # @return [ActiveSupport::Duration,URI,nil] define_property :perform_time, as: "performTime", types: [ "DateInterval", "URI", "null", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/how_to_direction.rb |