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.



5027
5028
5029
# File 'lib/kaltura_types.rb', line 5027

def data
  @data
end

#headerObject

Returns the value of attribute header.



5026
5027
5028
# File 'lib/kaltura_types.rb', line 5026

def header
  @header
end

#total_countObject

Returns the value of attribute total_count.



5028
5029
5030
# File 'lib/kaltura_types.rb', line 5028

def total_count
  @total_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5034
5035
5036
5037
5038
5039
# File 'lib/kaltura_types.rb', line 5034

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