lib/openactive/models/schema/entry_point.rb in openactive-0.1.2 vs lib/openactive/models/schema/entry_point.rb in openactive-0.2.0
- old
+ new
@@ -11,33 +11,35 @@
# @return [String]
define_property :content_type, as: "contentType", types: [
"string",
]
+ # @return [OpenActive::Models::Schema::SoftwareApplication,URI]
+ define_property :application, as: "application", types: [
+ "OpenActive::Models::Schema::SoftwareApplication",
+ "URI",
+ ]
+
# @return [String]
define_property :encoding_type, as: "encodingType", types: [
"string",
]
+ # @return [OpenActive::Models::Schema::SoftwareApplication,URI]
+ define_property :action_application, as: "actionApplication", types: [
+ "OpenActive::Models::Schema::SoftwareApplication",
+ "URI",
+ ]
+
# @return [String]
define_property :http_method, as: "httpMethod", types: [
"string",
]
# @return [String,URI]
define_property :action_platform, as: "actionPlatform", types: [
"string",
"URI",
- ]
-
- # @return [OpenActive::Models::Schema::SoftwareApplication]
- define_property :application, as: "application", types: [
- "OpenActive::Models::Schema::SoftwareApplication",
- ]
-
- # @return [OpenActive::Models::Schema::SoftwareApplication]
- define_property :action_application, as: "actionApplication", types: [
- "OpenActive::Models::Schema::SoftwareApplication",
]
# @return [String]
define_property :url_template, as: "urlTemplate", types: [
"string",