lib/openactive/models/schema/observation.rb in openactive-0.1.2 vs lib/openactive/models/schema/observation.rb in openactive-0.2.0
- old
+ new
@@ -6,34 +6,37 @@
# @return [String]
def type
"schema:Observation"
end
- # @return [URI]
- define_property :measured_property, as: "measuredProperty", types: [
+ # @return [OpenActive::Models::Schema::QuantitativeValue,URI]
+ define_property :margin_of_error, as: "marginOfError", types: [
+ "OpenActive::Models::Schema::QuantitativeValue",
"URI",
]
- # @return [DateTime,nil]
- define_property :observation_date, as: "observationDate", types: [
- "DateTime",
+ # @return [OpenActive::Models::Schema::StatisticalPopulation,URI]
+ define_property :observed_node, as: "observedNode", types: [
+ "OpenActive::Models::Schema::StatisticalPopulation",
+ "URI",
+ ]
+
+ # @return [OpenActive::Enums::PropertyEnumeration,URI,nil]
+ define_property :measured_property, as: "measuredProperty", types: [
+ "OpenActive::Enums::PropertyEnumeration",
+ "URI",
"null",
]
# @return [DateTime,nil]
- define_property :margin_of_error, as: "marginOfError", types: [
+ define_property :observation_date, as: "observationDate", types: [
"DateTime",
"null",
]
# @return [OpenActive::Models::Schema::DataType]
define_property :measured_value, as: "measuredValue", types: [
"OpenActive::Models::Schema::DataType",
- ]
-
- # @return [OpenActive::Models::Schema::StatisticalPopulation]
- define_property :observed_node, as: "observedNode", types: [
- "OpenActive::Models::Schema::StatisticalPopulation",
]
end
end
end
end