Sha256: 5742aa15d0a1c13782db4a67d4abd5702c4e090da0d60bf3bc9194a04ecfbb60
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
module OpenActive module Models module Schema class SoftwareSourceCode < ::OpenActive::Models::Schema::CreativeWork # @!attribute type # @return [String] def type "schema:SoftwareSourceCode" end # @return [String] define_property :runtime, as: "runtime", types: [ "string", ] # @return [String] define_property :code_sample_type, as: "codeSampleType", types: [ "string", ] # @return [OpenActive::Models::Schema::SoftwareApplication,URI] define_property :target_product, as: "targetProduct", types: [ "OpenActive::Models::Schema::SoftwareApplication", "URI", ] # @return [OpenActive::Models::Schema::ComputerLanguage,String,URI] define_property :programming_language, as: "programmingLanguage", types: [ "OpenActive::Models::Schema::ComputerLanguage", "string", "URI", ] # @return [URI] define_property :code_repository, as: "codeRepository", types: [ "URI", ] # @return [String] define_property :sample_type, as: "sampleType", types: [ "string", ] # @return [String] define_property :runtime_platform, as: "runtimePlatform", types: [ "string", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/software_source_code.rb |
openactive-0.4.0 | lib/openactive/models/schema/software_source_code.rb |