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.



8612
8613
8614
# File 'lib/kaltura_types.rb', line 8612

def data
  @data
end

#headerObject

Returns the value of attribute header.



8611
8612
8613
# File 'lib/kaltura_types.rb', line 8611

def header
  @header
end

#total_countObject

Returns the value of attribute total_count.



8613
8614
8615
# File 'lib/kaltura_types.rb', line 8613

def total_count
  @total_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8619
8620
8621
8622
8623
8624
8625
8626
8627
8628
8629
8630
# File 'lib/kaltura_types.rb', line 8619

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