Sha256: 64fdf594cb37ffcfa5ab1f1afd124f3dddc743db10743f96aa921db850fd96f8
Contents?: true
Size: 736 Bytes
Versions: 1
Compression:
Stored size: 736 Bytes
Contents
module OpenActive module Models module Schema class CourseInstance < ::OpenActive::Models::Schema::Event # @!attribute type # @return [String] def type "schema:CourseInstance" end # @return [OpenActive::Models::Schema::Person,URI] define_property :instructor, as: "instructor", types: [ "OpenActive::Models::Schema::Person", "URI", ] # @return [String] define_property :course_workload, as: "courseWorkload", types: [ "string", ] # @return [URI,String] define_property :course_mode, as: "courseMode", types: [ "URI", "string", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/course_instance.rb |