Class: Kaltura::KalturaReportGraph

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.



8932
8933
8934
# File 'lib/kaltura_types.rb', line 8932

def data
  @data
end

#idObject

Returns the value of attribute id.



8931
8932
8933
# File 'lib/kaltura_types.rb', line 8931

def id
  @id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8935
8936
8937
8938
8939
8940
8941
8942
8943
# File 'lib/kaltura_types.rb', line 8935

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