lib/openactive/models/schema/dose_schedule.rb in openactive-0.3.0 vs lib/openactive/models/schema/dose_schedule.rb in openactive-0.4.0

- old
+ new

@@ -6,29 +6,29 @@ # @return [String] def type "schema:DoseSchedule" end - # @return [String] - define_property :target_population, as: "targetPopulation", types: [ - "string", + # @return [BigDecimal,OpenActive::Enums::Schema::QualitativeValue,nil] + define_property :dose_value, as: "doseValue", types: [ + "Number", + "OpenActive::Enums::Schema::QualitativeValue", + "null", ] # @return [String] define_property :frequency, as: "frequency", types: [ "string", ] # @return [String] - define_property :dose_unit, as: "doseUnit", types: [ + define_property :target_population, as: "targetPopulation", types: [ "string", ] - # @return [BigDecimal,OpenActive::Enums::Schema::QualitativeValue,nil] - define_property :dose_value, as: "doseValue", types: [ - "Number", - "OpenActive::Enums::Schema::QualitativeValue", - "null", + # @return [String] + define_property :dose_unit, as: "doseUnit", types: [ + "string", ] end end end end