Sha256: a71b06d35fa2b7be2abdda0069d6c53cded9e27d1713871d4aaac0a271c64999

Contents?: true

Size: 1.33 KB

Versions: 4

Compression:

Stored size: 1.33 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 :sample_type, as: "sampleType", types: [
          "string",
        ]

        # @return [String]
        define_property :runtime_platform, as: "runtimePlatform", types: [
          "string",
        ]

        # @return [String]
        define_property :code_sample_type, as: "codeSampleType", types: [
          "string",
        ]

        # @return [OpenActive::Models::Schema::ComputerLanguage,String]
        define_property :programming_language, as: "programmingLanguage", types: [
          "OpenActive::Models::Schema::ComputerLanguage",
          "string",
        ]

        # @return [URI]
        define_property :code_repository, as: "codeRepository", types: [
          "URI",
        ]

        # @return [OpenActive::Models::Schema::SoftwareApplication]
        define_property :target_product, as: "targetProduct", types: [
          "OpenActive::Models::Schema::SoftwareApplication",
        ]
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openactive-0.1.2 lib/openactive/models/schema/software_source_code.rb
openactive-0.1.1 lib/openactive/models/schema/software_source_code.rb
openactive-0.1.0 lib/openactive/models/schema/software_source_code.rb
openactive-0.1.0.rc1 lib/openactive/models/schema/software_source_code.rb