Class: Kaltura::KalturaReportBaseTotal
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportBaseTotal
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#id ⇒ Object
Returns the value of attribute id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
8576 8577 8578 |
# File 'lib/kaltura_types.rb', line 8576 def data @data end |
#id ⇒ Object
Returns the value of attribute id.
8575 8576 8577 |
# File 'lib/kaltura_types.rb', line 8575 def id @id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8579 8580 8581 8582 8583 8584 8585 8586 8587 |
# File 'lib/kaltura_types.rb', line 8579 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 |