Sha256: 3a6f0702153263891f2095b1073fa4e8558c1ccb5f2830410147209613bc66b9
Contents?: true
Size: 916 Bytes
Versions: 4
Compression:
Stored size: 916 Bytes
Contents
module OpenActive module Models module Schema class AlignmentObject < ::OpenActive::Models::Schema::Intangible # @!attribute type # @return [String] def type "schema:AlignmentObject" end # @return [String] define_property :educational_framework, as: "educationalFramework", types: [ "string", ] # @return [String] define_property :alignment_type, as: "alignmentType", types: [ "string", ] # @return [String] define_property :target_name, as: "targetName", types: [ "string", ] # @return [URI] define_property :target_url, as: "targetUrl", types: [ "URI", ] # @return [String] define_property :target_description, as: "targetDescription", types: [ "string", ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems