Sha256: 06b00c0ee3de0fb6bbd0053ccedb34a5144918a7a386aa628ac2b91fccfd5305
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
module OpenActive module Models module Schema class DrugStrength < ::OpenActive::Models::Schema::MedicalIntangible # @!attribute type # @return [String] def type "schema:DrugStrength" end # @return [String] define_property :strength_unit, as: "strengthUnit", types: [ "string", ] # @return [String] define_property :active_ingredient, as: "activeIngredient", types: [ "string", ] # @return [BigDecimal,nil] define_property :strength_value, as: "strengthValue", types: [ "Number", "null", ] # @return [OpenActive::Models::Schema::MaximumDoseSchedule,URI] define_property :maximum_intake, as: "maximumIntake", types: [ "OpenActive::Models::Schema::MaximumDoseSchedule", "URI", ] # @return [OpenActive::Models::Schema::AdministrativeArea,URI] define_property :available_in, as: "availableIn", types: [ "OpenActive::Models::Schema::AdministrativeArea", "URI", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/drug_strength.rb |
openactive-0.4.0 | lib/openactive/models/schema/drug_strength.rb |