class Kaltura::KalturaCopyCaptionsJobData

Attributes

clips_description_array[RW]

an array of source start time and duration

entry_id[RW]

entry Id

full_copy[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_caption_client_plugin.rb, line 298
def from_xml(xml_element)
        super
        if xml_element.elements['entryId'] != nil
                self.entry_id = xml_element.elements['entryId'].text
        end
        if xml_element.elements['clipsDescriptionArray'] != nil
                self.clips_description_array = KalturaClientBase.object_from_xml(xml_element.elements['clipsDescriptionArray'], 'KalturaClipDescription')
        end
        if xml_element.elements['fullCopy'] != nil
                self.full_copy = xml_element.elements['fullCopy'].text
        end
end
full_copy=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_caption_client_plugin.rb, line 294
def full_copy=(val)
        @full_copy = to_b(val)
end