lib/openactive/models/schema/drug_cost.rb in openactive-0.3.0 vs lib/openactive/models/schema/drug_cost.rb in openactive-0.4.0
- old
+ new
@@ -6,42 +6,42 @@
# @return [String]
def type
"schema:DrugCost"
end
- # @return [OpenActive::Models::Schema::AdministrativeArea,URI]
- define_property :applicable_location, as: "applicableLocation", types: [
- "OpenActive::Models::Schema::AdministrativeArea",
- "URI",
+ # @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 [OpenActive::Models::Schema::DrugCostCategory,URI]
- define_property :cost_category, as: "costCategory", types: [
- "OpenActive::Models::Schema::DrugCostCategory",
- "URI",
+ # @return [String]
+ define_property :cost_origin, as: "costOrigin", types: [
+ "string",
]
# @return [String]
define_property :drug_unit, as: "drugUnit", types: [
"string",
]
- # @return [String]
- define_property :cost_currency, as: "costCurrency", types: [
- "string",
+ # @return [OpenActive::Models::Schema::AdministrativeArea,URI]
+ define_property :applicable_location, as: "applicableLocation", types: [
+ "OpenActive::Models::Schema::AdministrativeArea",
+ "URI",
]
- # @return [String]
- define_property :cost_origin, as: "costOrigin", types: [
- "string",
+ # @return [OpenActive::Models::Schema::DrugCostCategory,URI]
+ define_property :cost_category, as: "costCategory", types: [
+ "OpenActive::Models::Schema::DrugCostCategory",
+ "URI",
]
end
end
end
end