class Kaltura::KalturaBulkUploadEntryData
This class represents object-specific data passed to the
bulk upload job.
Attributes
conversion_profile_id[RW]
Selected profile id for all bulk entries
Public Instance Methods
conversion_profile_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 11262 def conversion_profile_id=(val) @conversion_profile_id = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBulkUploadObjectData#from_xml
# File lib/kaltura_types.rb, line 11266 def from_xml(xml_element) super if xml_element.elements['conversionProfileId'] != nil self.conversion_profile_id = xml_element.elements['conversionProfileId'].text end end