class Kaltura::KalturaVendorTaskData

Attributes

entry_duration[RW]

The duration of the entry for which the task was created for in milliseconds

Public Instance Methods

entry_duration=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 269
def entry_duration=(val)
        @entry_duration = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 273
def from_xml(xml_element)
        super
        if xml_element.elements['entryDuration'] != nil
                self.entry_duration = xml_element.elements['entryDuration'].text
        end
end