Class: Kaltura::KalturaReportExportFile
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportExportFile
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#file_id ⇒ Object
Returns the value of attribute file_id.
-
#file_name ⇒ Object
Returns the value of attribute file_name.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#file_id ⇒ Object
Returns the value of attribute file_id.
8592 8593 8594 |
# File 'lib/kaltura_types.rb', line 8592 def file_id @file_id end |
#file_name ⇒ Object
Returns the value of attribute file_name.
8593 8594 8595 |
# File 'lib/kaltura_types.rb', line 8593 def file_name @file_name end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8596 8597 8598 8599 8600 8601 8602 8603 8604 |
# File 'lib/kaltura_types.rb', line 8596 def from_xml(xml_element) super if xml_element.elements['fileId'] != nil self.file_id = xml_element.elements['fileId'].text end if xml_element.elements['fileName'] != nil self.file_name = xml_element.elements['fileName'].text end end |