lib/openactive/models/schema/media_object.rb in openactive-0.2.2 vs lib/openactive/models/schema/media_object.rb in openactive-0.3.0
- old
+ new
@@ -6,119 +6,130 @@
# @return [String]
def type
"schema:MediaObject"
end
- # @return [DateTime,Time,nil]
- define_property :start_time, as: "startTime", types: [
- "DateTime",
- "Time",
- "null",
- ]
-
# @return [String]
- define_property :bitrate, as: "bitrate", types: [
+ define_property :content_size, as: "contentSize", types: [
"string",
]
- # @return [OpenActive::Models::Schema::QuantitativeValue,OpenActive::Models::Schema::Distance,URI]
- define_property :height, as: "height", types: [
- "OpenActive::Models::Schema::QuantitativeValue",
- "OpenActive::Models::Schema::Distance",
- "URI",
- ]
-
- # @return [String]
- define_property :player_type, as: "playerType", types: [
- "string",
- ]
-
# @return [URI]
- define_property :embed_url, as: "embedUrl", types: [
+ define_property :content_url, as: "contentUrl", types: [
"URI",
]
# @return [OpenActive::Models::Schema::QuantitativeValue,OpenActive::Models::Schema::Distance,URI]
define_property :width, as: "width", types: [
"OpenActive::Models::Schema::QuantitativeValue",
"OpenActive::Models::Schema::Distance",
"URI",
]
- # @return [OpenActive::Models::Schema::CreativeWork,URI]
- define_property :encodes_creative_work, as: "encodesCreativeWork", types: [
- "OpenActive::Models::Schema::CreativeWork",
+ # @return [OpenActive::Models::Schema::Distance,OpenActive::Models::Schema::QuantitativeValue,URI]
+ define_property :height, as: "height", types: [
+ "OpenActive::Models::Schema::Distance",
+ "OpenActive::Models::Schema::QuantitativeValue",
"URI",
]
# @return [OpenActive::Models::Schema::Place,URI]
define_property :regions_allowed, as: "regionsAllowed", types: [
"OpenActive::Models::Schema::Place",
"URI",
]
# @return [DateTime,Time,nil]
- define_property :end_time, as: "endTime", types: [
+ define_property :start_time, as: "startTime", types: [
"DateTime",
"Time",
"null",
]
- # @return [OpenActive::Models::Schema::GeoShape,String,OpenActive::Models::Schema::Place,URI]
+ # @return [OpenActive::Models::Schema::NewsArticle,URI]
+ define_property :associated_article, as: "associatedArticle", types: [
+ "OpenActive::Models::Schema::NewsArticle",
+ "URI",
+ ]
+
+ # @return [OpenActive::Models::Schema::Place,String,OpenActive::Models::Schema::GeoShape,URI]
define_property :ineligible_region, as: "ineligibleRegion", types: [
+ "OpenActive::Models::Schema::Place",
+ "string",
"OpenActive::Models::Schema::GeoShape",
+ "URI",
+ ]
+
+ # @return [OpenActive::Models::Schema::MediaSubscription,Boolean,URI,nil]
+ define_property :requires_subscription, as: "requiresSubscription", types: [
+ "OpenActive::Models::Schema::MediaSubscription",
+ "bool",
+ "URI",
+ "null",
+ ]
+
+ # @return [String]
+ define_property :player_type, as: "playerType", types: [
"string",
- "OpenActive::Models::Schema::Place",
+ ]
+
+ # @return [OpenActive::Models::Schema::CreativeWork,URI]
+ define_property :encodes_creative_work, as: "encodesCreativeWork", types: [
+ "OpenActive::Models::Schema::CreativeWork",
"URI",
]
+ # @return [ActiveSupport::Duration,URI,nil]
+ define_property :duration, as: "duration", types: [
+ "DateInterval",
+ "URI",
+ "null",
+ ]
+
+ # @return [String,URI]
+ define_property :encoding_format, as: "encodingFormat", types: [
+ "string",
+ "URI",
+ ]
+
# @return [Date,nil]
define_property :upload_date, as: "uploadDate", types: [
"Date",
"null",
]
# @return [URI]
- define_property :content_url, as: "contentUrl", types: [
+ define_property :embed_url, as: "embedUrl", types: [
"URI",
]
# @return [String]
- define_property :content_size, as: "contentSize", types: [
+ define_property :bitrate, as: "bitrate", types: [
"string",
]
- # @return [String,URI]
- define_property :encoding_format, as: "encodingFormat", types: [
- "string",
- "URI",
+ # @return [DateTime,Time,nil]
+ define_property :end_time, as: "endTime", types: [
+ "DateTime",
+ "Time",
+ "null",
]
# @return [OpenActive::Models::Schema::Organization,URI]
define_property :production_company, as: "productionCompany", types: [
"OpenActive::Models::Schema::Organization",
"URI",
]
- # @return [OpenActive::Models::Schema::NewsArticle,URI]
- define_property :associated_article, as: "associatedArticle", types: [
- "OpenActive::Models::Schema::NewsArticle",
- "URI",
+ # @return [String]
+ define_property :sha256, as: "sha256", types: [
+ "string",
]
- # @return [ActiveSupport::Duration,URI,nil]
- define_property :duration, as: "duration", types: [
- "DateInterval",
+ # @return [OpenActive::Models::Schema::Claim,URI]
+ define_property :interpreted_as_claim, as: "interpretedAsClaim", types: [
+ "OpenActive::Models::Schema::Claim",
"URI",
- "null",
- ]
-
- # @return [Boolean,OpenActive::Models::Schema::MediaSubscription,URI,nil]
- define_property :requires_subscription, as: "requiresSubscription", types: [
- "bool",
- "OpenActive::Models::Schema::MediaSubscription",
- "URI",
- "null",
]
end
end
end
end