Class: Kaltura::KalturaLiveRedirectScheduleEvent
- Inherits:
-
KalturaBaseLiveScheduleEvent
- Object
- KalturaObjectBase
- KalturaScheduleEvent
- KalturaEntryScheduleEvent
- KalturaBaseLiveScheduleEvent
- Kaltura::KalturaLiveRedirectScheduleEvent
- Defined in:
- lib/kaltura_plugins/kaltura_schedule_client_plugin.rb
Instance Attribute Summary collapse
-
#redirect_entry_id ⇒ Object
The vod entry to redirect.
Attributes inherited from KalturaEntryScheduleEvent
#blackout_conflicts, #category_ids, #entry_ids, #template_entry_id
Attributes inherited from KalturaScheduleEvent
#classification_type, #comment, #contact, #created_at, #description, #duration, #end_date, #geo_latitude, #geo_longitude, #id, #location, #organizer, #owner_id, #parent_id, #partner_id, #priority, #recurrence, #recurrence_type, #reference_id, #sequence, #start_date, #status, #summary, #tags, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#redirect_entry_id ⇒ Object
The vod entry to redirect
1055 1056 1057 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1055 def redirect_entry_id @redirect_entry_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1058 1059 1060 1061 1062 1063 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1058 def from_xml(xml_element) super if xml_element.elements['redirectEntryId'] != nil self.redirect_entry_id = xml_element.elements['redirectEntryId'].text end end |