class Kaltura::KalturaUrlResource

Used to ingest media that is available on remote server and accessible using the supplied URL, media file will be downloaded using import job in order to make the asset ready.

Attributes

force_async_download[RW]

Force Import Job

url[RW]

Remote URL, FTP, HTTP or HTTPS

Public Instance Methods

force_async_download=(val) click to toggle source
# File lib/kaltura_types.rb, line 8335
def force_async_download=(val)
        @force_async_download = to_b(val)
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 8339
def from_xml(xml_element)
        super
        if xml_element.elements['url'] != nil
                self.url = xml_element.elements['url'].text
        end
        if xml_element.elements['forceAsyncDownload'] != nil
                self.force_async_download = xml_element.elements['forceAsyncDownload'].text
        end
end