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.



9053
9054
9055
# File 'lib/kaltura_types.rb', line 9053

def data
  @data
end

#headerObject

Returns the value of attribute header.



9052
9053
9054
# File 'lib/kaltura_types.rb', line 9052

def header
  @header
end

#total_countObject

Returns the value of attribute total_count.



9054
9055
9056
# File 'lib/kaltura_types.rb', line 9054

def total_count
  @total_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
# File 'lib/kaltura_types.rb', line 9060

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