Sha256: c76fd52e88e8a7e8d3980a66630a2364b25546aef8d652f55f777c6ec144fc0f
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 KB
Contents
module OpenActive module Models module Schema class Course < ::OpenActive::Models::Schema::LearningResource # @!attribute type # @return [String] def type "schema:Course" end # @return [String,OpenActive::Models::Schema::AlignmentObject,OpenActive::Models::Schema::Course,URI] define_property :course_prerequisites, as: "coursePrerequisites", types: [ "string", "OpenActive::Models::Schema::AlignmentObject", "OpenActive::Models::Schema::Course", "URI", ] # @return [URI,OpenActive::Models::Schema::EducationalOccupationalCredential,String] define_property :educational_credential_awarded, as: "educationalCredentialAwarded", types: [ "URI", "OpenActive::Models::Schema::EducationalOccupationalCredential", "string", ] # @return [int,OpenActive::Models::Schema::StructuredValue,URI,nil] define_property :number_of_credits, as: "numberOfCredits", types: [ "int", "OpenActive::Models::Schema::StructuredValue", "URI", "null", ] # @return [OpenActive::Models::Schema::EducationalOccupationalCredential,String,URI] define_property :occupational_credential_awarded, as: "occupationalCredentialAwarded", types: [ "OpenActive::Models::Schema::EducationalOccupationalCredential", "string", "URI", ] # @return [String] define_property :course_code, as: "courseCode", types: [ "string", ] # @return [OpenActive::Models::Schema::CourseInstance,URI] define_property :has_course_instance, as: "hasCourseInstance", types: [ "OpenActive::Models::Schema::CourseInstance", "URI", ] 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.rb |