lib/openactive/models/schema/software_source_code.rb in openactive-0.2.2 vs lib/openactive/models/schema/software_source_code.rb in openactive-0.3.0

- old
+ new

@@ -6,30 +6,25 @@ # @return [String] def type "schema:SoftwareSourceCode" end - # @return [String] - define_property :runtime_platform, as: "runtimePlatform", types: [ - "string", - ] - # @return [String,OpenActive::Models::Schema::ComputerLanguage,URI] define_property :programming_language, as: "programmingLanguage", types: [ "string", "OpenActive::Models::Schema::ComputerLanguage", "URI", ] # @return [String] - define_property :code_sample_type, as: "codeSampleType", types: [ + define_property :sample_type, as: "sampleType", types: [ "string", ] - # @return [URI] - define_property :code_repository, as: "codeRepository", types: [ - "URI", + # @return [String] + define_property :runtime_platform, as: "runtimePlatform", types: [ + "string", ] # @return [String] define_property :runtime, as: "runtime", types: [ "string", @@ -39,11 +34,16 @@ define_property :target_product, as: "targetProduct", types: [ "OpenActive::Models::Schema::SoftwareApplication", "URI", ] + # @return [URI] + define_property :code_repository, as: "codeRepository", types: [ + "URI", + ] + # @return [String] - define_property :sample_type, as: "sampleType", types: [ + define_property :code_sample_type, as: "codeSampleType", types: [ "string", ] end end end