Class: Kaltura::KalturaEntryLiveStats

Inherits:
KalturaLiveStats show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaLiveStats

#audience, #avg_bitrate, #buffer_time, #dvr_audience, #plays, #seconds_viewed, #start_event, #timestamp

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#entry_idObject

Returns the value of attribute entry_id.



8830
8831
8832
# File 'lib/kaltura_types.rb', line 8830

def entry_id
  @entry_id
end

#peak_audienceObject

Returns the value of attribute peak_audience.



8831
8832
8833
# File 'lib/kaltura_types.rb', line 8831

def peak_audience
  @peak_audience
end

#peak_dvr_audienceObject

Returns the value of attribute peak_dvr_audience.



8832
8833
8834
# File 'lib/kaltura_types.rb', line 8832

def peak_dvr_audience
  @peak_dvr_audience
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8841
8842
8843
8844
8845
8846
# File 'lib/kaltura_types.rb', line 8841

def from_xml(xml_element)
	super
	self.entry_id = xml_element.elements['entryId'].text
	self.peak_audience = xml_element.elements['peakAudience'].text
	self.peak_dvr_audience = xml_element.elements['peakDvrAudience'].text
end