Class: Kaltura::KalturaUsersCsvJobData
- Inherits:
-
KalturaMappedObjectsCsvJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaExportCsvJobData
- KalturaMappedObjectsCsvJobData
- Kaltura::KalturaUsersCsvJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
Attributes inherited from KalturaMappedObjectsCsvJobData
#additional_fields, #mapped_fields, #metadata_profile_id, #options
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
Instance Attribute Details
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
19847 19848 19849 |
# File 'lib/kaltura_types.rb', line 19847 def filter @filter end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
19850 19851 19852 19853 19854 19855 |
# File 'lib/kaltura_types.rb', line 19850 def from_xml(xml_element) super if xml_element.elements['filter'] != nil self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaUserFilter') end end |