Class: Kaltura::KalturaReportBaseTotal

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.



4957
4958
4959
# File 'lib/kaltura_types.rb', line 4957

def data
  @data
end

#idObject

Returns the value of attribute id.



4956
4957
4958
# File 'lib/kaltura_types.rb', line 4956

def id
  @id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4960
4961
4962
4963
4964
# File 'lib/kaltura_types.rb', line 4960

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