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.



8319
8320
8321
# File 'lib/kaltura_types.rb', line 8319

def data
  @data
end

#idObject

Returns the value of attribute id.



8318
8319
8320
# File 'lib/kaltura_types.rb', line 8318

def id
  @id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8322
8323
8324
8325
8326
8327
8328
8329
8330
# File 'lib/kaltura_types.rb', line 8322

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