Class: Kaltura::KalturaReportGraph
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaReportGraph
- 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.
8868 8869 8870 |
# File 'lib/kaltura_types.rb', line 8868 def data @data end |
#id ⇒ Object
Returns the value of attribute id.
8867 8868 8869 |
# File 'lib/kaltura_types.rb', line 8867 def id @id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8871 8872 8873 8874 8875 8876 8877 8878 8879 |
# File 'lib/kaltura_types.rb', line 8871 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 |