Class: Kaltura::KalturaLiveToVodJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#amf_arrayObject

amf Array File Path



14194
14195
14196
# File 'lib/kaltura_types.rb', line 14194

def amf_array
  @amf_array
end

#last_cue_point_sync_timeObject

last live to vod sync time



14196
14197
14198
# File 'lib/kaltura_types.rb', line 14196

def last_cue_point_sync_time
  @last_cue_point_sync_time
end

#last_segment_driftObject

last segment drift



14198
14199
14200
# File 'lib/kaltura_types.rb', line 14198

def last_segment_drift
  @last_segment_drift
end

#last_segment_durationObject

last Segment Duration



14192
14193
14194
# File 'lib/kaltura_types.rb', line 14192

def last_segment_duration
  @last_segment_duration
end

#live_entry_idObject

live Entry Id



14188
14189
14190
# File 'lib/kaltura_types.rb', line 14188

def live_entry_id
  @live_entry_id
end

#total_vod_durationObject

total VOD Duration



14190
14191
14192
# File 'lib/kaltura_types.rb', line 14190

def total_vod_duration
  @total_vod_duration
end

#vod_entry_idObject

$vod Entry Id



14186
14187
14188
# File 'lib/kaltura_types.rb', line 14186

def vod_entry_id
  @vod_entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14213
14214
14215
14216
14217
14218
14219
14220
14221
14222
14223
14224
14225
14226
14227
14228
14229
14230
14231
14232
14233
14234
14235
14236
# File 'lib/kaltura_types.rb', line 14213

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