Sha256: 0dd0b4b0012b6c7fbc975d161dd65760c6b96e3374c500ef87cb5fdcdfa45d48
Contents?: true
Size: 1007 Bytes
Versions: 3
Compression:
Stored size: 1007 Bytes
Contents
module OpenActive module Models module Schema class BroadcastEvent < ::OpenActive::Models::Schema::PublicationEvent # @!attribute type # @return [String] def type "schema:BroadcastEvent" end # @return [String,OpenActive::Models::Schema::Language,URI] define_property :subtitle_language, as: "subtitleLanguage", types: [ "string", "OpenActive::Models::Schema::Language", "URI", ] # @return [String] define_property :video_format, as: "videoFormat", types: [ "string", ] # @return [OpenActive::Models::Schema::Event,URI] define_property :broadcast_of_event, as: "broadcastOfEvent", types: [ "OpenActive::Models::Schema::Event", "URI", ] # @return [Boolean,nil] define_property :is_live_broadcast, as: "isLiveBroadcast", types: [ "bool", "null", ] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems