Class: Kaltura::KalturaUsersCsvJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaExportCsvJobData

#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



18367
18368
18369
# File 'lib/kaltura_types.rb', line 18367

def additional_fields
  @additional_fields
end

#filterObject

The filter should return the list of users that need to be specified in the csv.



18363
18364
18365
# File 'lib/kaltura_types.rb', line 18363

def filter
  @filter
end

#metadata_profile_idObject

The metadata profile we should look the xpath in



18365
18366
18367
# File 'lib/kaltura_types.rb', line 18365

def 
  
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18373
18374
18375
18376
18377
18378
18379
18380
18381
18382
18383
18384
# File 'lib/kaltura_types.rb', line 18373

def from_xml(xml_element)
  super
  if xml_element.elements['filter'] != nil
    self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaUserFilter')
  end
  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
end