lib/openactive/models/schema/delivery_event.rb in openactive-0.2.2 vs lib/openactive/models/schema/delivery_event.rb in openactive-0.3.0
- old
+ new
@@ -11,23 +11,23 @@
# @return [String]
define_property :access_code, as: "accessCode", types: [
"string",
]
+ # @return [DateTime,nil]
+ define_property :available_through, as: "availableThrough", types: [
+ "DateTime",
+ "null",
+ ]
+
# @return [OpenActive::Enums::Schema::DeliveryMethod,nil]
define_property :has_delivery_method, as: "hasDeliveryMethod", types: [
"OpenActive::Enums::Schema::DeliveryMethod",
"null",
]
# @return [DateTime,nil]
define_property :available_from, as: "availableFrom", types: [
- "DateTime",
- "null",
- ]
-
- # @return [DateTime,nil]
- define_property :available_through, as: "availableThrough", types: [
"DateTime",
"null",
]
end
end