Class: Kaltura::KalturaReportExportFile

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#file_idObject

Returns the value of attribute file_id.



8540
8541
8542
# File 'lib/kaltura_types.rb', line 8540

def file_id
  @file_id
end

#file_nameObject

Returns the value of attribute file_name.



8541
8542
8543
# File 'lib/kaltura_types.rb', line 8541

def file_name
  @file_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8544
8545
8546
8547
8548
8549
8550
8551
8552
# File 'lib/kaltura_types.rb', line 8544

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