Class: Kaltura::KalturaReportTable

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

#dataObject

Returns the value of attribute data.



8688
8689
8690
# File 'lib/kaltura_types.rb', line 8688

def data
  @data
end

#headerObject

Returns the value of attribute header.



8687
8688
8689
# File 'lib/kaltura_types.rb', line 8687

def header
  @header
end

#total_countObject

Returns the value of attribute total_count.



8689
8690
8691
# File 'lib/kaltura_types.rb', line 8689

def total_count
  @total_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8695
8696
8697
8698
8699
8700
8701
8702
8703
8704
8705
8706
# File 'lib/kaltura_types.rb', line 8695

def from_xml(xml_element)
	super
	if xml_element.elements['header'] != nil
		self.header = xml_element.elements['header'].text
	end
	if xml_element.elements['data'] != nil
		self.data = xml_element.elements['data'].text
	end
	if xml_element.elements['totalCount'] != nil
		self.total_count = xml_element.elements['totalCount'].text
	end
end