Class: Kaltura::KalturaVendorTaskData
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaVendorTaskData
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Direct Known Subclasses
KalturaIntelligentTaggingVendorTaskData, KalturaScheduledVendorTaskData, KalturaVendorTaskDataCaptionAsset
Instance Attribute Summary collapse
-
#entry_duration ⇒ Object
The duration of the entry for which the task was created for in milliseconds.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_duration ⇒ Object
The duration of the entry for which the task was created for in milliseconds
271 272 273 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 271 def entry_duration @entry_duration end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
277 278 279 280 281 282 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 277 def from_xml(xml_element) super if xml_element.elements['entryDuration'] != nil self.entry_duration = xml_element.elements['entryDuration'].text end end |