Class: Kaltura::KalturaLiveToVodJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaLiveToVodJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#amf_array ⇒ Object
amf Array File Path.
-
#last_cue_point_sync_time ⇒ Object
last live to vod sync time.
-
#last_segment_drift ⇒ Object
last segment drift.
-
#last_segment_duration ⇒ Object
last Segment Duration.
-
#live_entry_id ⇒ Object
live Entry Id.
-
#total_vod_duration ⇒ Object
total VOD Duration.
-
#vod_entry_id ⇒ Object
$vod Entry Id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#amf_array ⇒ Object
amf Array File Path
14233 14234 14235 |
# File 'lib/kaltura_types.rb', line 14233 def amf_array @amf_array end |
#last_cue_point_sync_time ⇒ Object
last live to vod sync time
14235 14236 14237 |
# File 'lib/kaltura_types.rb', line 14235 def last_cue_point_sync_time @last_cue_point_sync_time end |
#last_segment_drift ⇒ Object
last segment drift
14237 14238 14239 |
# File 'lib/kaltura_types.rb', line 14237 def last_segment_drift @last_segment_drift end |
#last_segment_duration ⇒ Object
last Segment Duration
14231 14232 14233 |
# File 'lib/kaltura_types.rb', line 14231 def last_segment_duration @last_segment_duration end |
#live_entry_id ⇒ Object
live Entry Id
14227 14228 14229 |
# File 'lib/kaltura_types.rb', line 14227 def live_entry_id @live_entry_id end |
#total_vod_duration ⇒ Object
total VOD Duration
14229 14230 14231 |
# File 'lib/kaltura_types.rb', line 14229 def total_vod_duration @total_vod_duration end |
#vod_entry_id ⇒ Object
$vod Entry Id
14225 14226 14227 |
# File 'lib/kaltura_types.rb', line 14225 def vod_entry_id @vod_entry_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 |
# File 'lib/kaltura_types.rb', line 14252 def from_xml(xml_element) super if xml_element.elements['vodEntryId'] != nil self.vod_entry_id = xml_element.elements['vodEntryId'].text end if xml_element.elements['liveEntryId'] != nil self.live_entry_id = xml_element.elements['liveEntryId'].text end if xml_element.elements['totalVodDuration'] != nil self.total_vod_duration = xml_element.elements['totalVodDuration'].text end if xml_element.elements['lastSegmentDuration'] != nil self.last_segment_duration = xml_element.elements['lastSegmentDuration'].text end if xml_element.elements['amfArray'] != nil self.amf_array = xml_element.elements['amfArray'].text end if xml_element.elements['lastCuePointSyncTime'] != nil self.last_cue_point_sync_time = xml_element.elements['lastCuePointSyncTime'].text end if xml_element.elements['lastSegmentDrift'] != nil self.last_segment_drift = xml_element.elements['lastSegmentDrift'].text end end |