Sha256: 3380f4dd2b4474422aade777b608832d629aa93bb786faf57733c835e2171bf0
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
module OpenActive module Models module Schema class DrugCost < ::OpenActive::Models::Schema::MedicalEntity # @!attribute type # @return [String] def type "schema:DrugCost" end # @return [String] define_property :cost_currency, as: "costCurrency", types: [ "string", ] # @return [BigDecimal,String,OpenActive::Enums::Schema::QualitativeValue,nil] define_property :cost_per_unit, as: "costPerUnit", types: [ "Number", "string", "OpenActive::Enums::Schema::QualitativeValue", "null", ] # @return [String] define_property :cost_origin, as: "costOrigin", types: [ "string", ] # @return [String] define_property :drug_unit, as: "drugUnit", types: [ "string", ] # @return [OpenActive::Models::Schema::AdministrativeArea,URI] define_property :applicable_location, as: "applicableLocation", types: [ "OpenActive::Models::Schema::AdministrativeArea", "URI", ] # @return [OpenActive::Models::Schema::DrugCostCategory,URI] define_property :cost_category, as: "costCategory", types: [ "OpenActive::Models::Schema::DrugCostCategory", "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_cost.rb |
openactive-0.4.0 | lib/openactive/models/schema/drug_cost.rb |