lib/openactive/models/schema/quantitative_value_distribution.rb in openactive-0.3.0 vs lib/openactive/models/schema/quantitative_value_distribution.rb in openactive-0.4.0
- old
+ new
@@ -7,42 +7,42 @@
def type
"schema:QuantitativeValueDistribution"
end
# @return [BigDecimal,nil]
- define_property :percentile75, as: "percentile75", types: [
+ define_property :median, as: "median", types: [
"Number",
"null",
]
- # @return [BigDecimal,nil]
- define_property :median, as: "median", types: [
- "Number",
+ # @return [ActiveSupport::Duration,URI,nil]
+ define_property :duration, as: "duration", types: [
+ "DateInterval",
+ "URI",
"null",
]
# @return [BigDecimal,nil]
- define_property :percentile10, as: "percentile10", types: [
+ define_property :percentile25, as: "percentile25", types: [
"Number",
"null",
]
# @return [BigDecimal,nil]
- define_property :percentile25, as: "percentile25", types: [
+ define_property :percentile75, as: "percentile75", types: [
"Number",
"null",
]
# @return [BigDecimal,nil]
- define_property :percentile90, as: "percentile90", types: [
+ define_property :percentile10, as: "percentile10", types: [
"Number",
"null",
]
- # @return [ActiveSupport::Duration,URI,nil]
- define_property :duration, as: "duration", types: [
- "DateInterval",
- "URI",
+ # @return [BigDecimal,nil]
+ define_property :percentile90, as: "percentile90", types: [
+ "Number",
"null",
]
end
end
end