module OpenActive module Models module Schema class CourseInstance < ::OpenActive::Models::Schema::Event # @!attribute type # @return [String] def type "schema:CourseInstance" end # @return [String,URI] define_property :course_mode, as: "courseMode", types: [ "string", "URI", ] # @return [String] define_property :course_workload, as: "courseWorkload", types: [ "string", ] # @return [OpenActive::Models::Schema::Person,URI] define_property :instructor, as: "instructor", types: [ "OpenActive::Models::Schema::Person", "URI", ] end end end end