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
274 275 276 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 274 def entry_duration @entry_duration end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
280 281 282 283 284 285 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 280 def from_xml(xml_element) super if xml_element.elements['entryDuration'] != nil self.entry_duration = xml_element.elements['entryDuration'].text end end |