class Kaltura::KalturaConvartableJobData

Attributes

actual_src_file_sync_local_path[RW]

The translated path as used by the scheduler

current_operation_index[RW]
current_operation_set[RW]
engine_version[RW]
flavor_params_output[RW]
flavor_params_output_id[RW]
media_info_id[RW]
plugin_data[RW]
src_file_sync_local_path[RW]
src_file_sync_remote_url[RW]
src_file_syncs[RW]

Public Instance Methods

current_operation_index=(val) click to toggle source
# File lib/kaltura_types.rb, line 12300
def current_operation_index=(val)
        @current_operation_index = val.to_i
end
current_operation_set=(val) click to toggle source
# File lib/kaltura_types.rb, line 12297
def current_operation_set=(val)
        @current_operation_set = val.to_i
end
engine_version=(val) click to toggle source
# File lib/kaltura_types.rb, line 12288
def engine_version=(val)
        @engine_version = val.to_i
end
flavor_params_output_id=(val) click to toggle source
# File lib/kaltura_types.rb, line 12291
def flavor_params_output_id=(val)
        @flavor_params_output_id = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaJobData#from_xml
# File lib/kaltura_types.rb, line 12304
def from_xml(xml_element)
        super
        if xml_element.elements['srcFileSyncLocalPath'] != nil
                self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text
        end
        if xml_element.elements['actualSrcFileSyncLocalPath'] != nil
                self.actual_src_file_sync_local_path = xml_element.elements['actualSrcFileSyncLocalPath'].text
        end
        if xml_element.elements['srcFileSyncRemoteUrl'] != nil
                self.src_file_sync_remote_url = xml_element.elements['srcFileSyncRemoteUrl'].text
        end
        if xml_element.elements['srcFileSyncs'] != nil
                self.src_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['srcFileSyncs'], 'KalturaSourceFileSyncDescriptor')
        end
        if xml_element.elements['engineVersion'] != nil
                self.engine_version = xml_element.elements['engineVersion'].text
        end
        if xml_element.elements['flavorParamsOutputId'] != nil
                self.flavor_params_output_id = xml_element.elements['flavorParamsOutputId'].text
        end
        if xml_element.elements['flavorParamsOutput'] != nil
                self.flavor_params_output = KalturaClientBase.object_from_xml(xml_element.elements['flavorParamsOutput'], 'KalturaFlavorParamsOutput')
        end
        if xml_element.elements['mediaInfoId'] != nil
                self.media_info_id = xml_element.elements['mediaInfoId'].text
        end
        if xml_element.elements['currentOperationSet'] != nil
                self.current_operation_set = xml_element.elements['currentOperationSet'].text
        end
        if xml_element.elements['currentOperationIndex'] != nil
                self.current_operation_index = xml_element.elements['currentOperationIndex'].text
        end
        if xml_element.elements['pluginData'] != nil
                self.plugin_data = KalturaClientBase.object_from_xml(xml_element.elements['pluginData'], 'KalturaKeyValue')
        end
end
media_info_id=(val) click to toggle source
# File lib/kaltura_types.rb, line 12294
def media_info_id=(val)
        @media_info_id = val.to_i
end