Class: Kaltura::KalturaUsersCsvJobData
- Inherits:
-
KalturaExportCsvJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaExportCsvJobData
- Kaltura::KalturaUsersCsvJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#additional_fields ⇒ Object
The xpath to look in the metadataProfileId and the wanted csv field name.
-
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
-
#metadata_profile_id ⇒ Object
The metadata profile we should look the xpath in.
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
Instance Attribute Details
#additional_fields ⇒ Object
The xpath to look in the metadataProfileId and the wanted csv field name
17987 17988 17989 |
# File 'lib/kaltura_types.rb', line 17987 def additional_fields @additional_fields end |
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
17983 17984 17985 |
# File 'lib/kaltura_types.rb', line 17983 def filter @filter end |
#metadata_profile_id ⇒ Object
The metadata profile we should look the xpath in
17985 17986 17987 |
# File 'lib/kaltura_types.rb', line 17985 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 |
# File 'lib/kaltura_types.rb', line 17993 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 |