Class: Kaltura::KalturaMappedObjectsCsvJobData

Inherits:
KalturaExportCsvJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaExportCsvJobData

#output_path, #shared_output_path, #user_mail, #user_name

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#additional_fieldsObject

The xpath to look in the metadataProfileId and the wanted csv field name



17853
17854
17855
# File 'lib/kaltura_types.rb', line 17853

def additional_fields
  @additional_fields
end

#mapped_fieldsObject

Array of header names and their mapped user fields



17855
17856
17857
# File 'lib/kaltura_types.rb', line 17855

def mapped_fields
  @mapped_fields
end

#metadata_profile_idObject

The metadata profile we should look the xpath in



17851
17852
17853
# File 'lib/kaltura_types.rb', line 17851

def 
  @metadata_profile_id
end

#optionsObject

Returns the value of attribute options.



17856
17857
17858
# File 'lib/kaltura_types.rb', line 17856

def options
  @options
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17862
17863
17864
17865
17866
17867
17868
17869
17870
17871
17872
17873
17874
17875
17876
# File 'lib/kaltura_types.rb', line 17862

def from_xml(xml_element)
	super
	if xml_element.elements['metadataProfileId'] != nil
		self. = xml_element.elements['metadataProfileId'].text
	end
	if xml_element.elements['additionalFields'] != nil
		self.additional_fields = KalturaClientBase.object_from_xml(xml_element.elements['additionalFields'], 'KalturaCsvAdditionalFieldInfo')
	end
	if xml_element.elements['mappedFields'] != nil
		self.mapped_fields = KalturaClientBase.object_from_xml(xml_element.elements['mappedFields'], 'KalturaKeyValue')
	end
	if xml_element.elements['options'] != nil
		self.options = KalturaClientBase.object_from_xml(xml_element.elements['options'], 'KalturaExportToCsvOptions')
	end
end