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.
9019 9020 9021 |
# File 'lib/kaltura_types.rb', line 9019 def data @data end |
#id ⇒ Object
Returns the value of attribute id.
9018 9019 9020 |
# File 'lib/kaltura_types.rb', line 9018 def id @id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9022 9023 9024 9025 9026 9027 9028 9029 9030 |
# File 'lib/kaltura_types.rb', line 9022 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 |