Class: Kaltura::KalturaEntryLiveStats
- Inherits:
-
KalturaLiveStats
- Object
- KalturaObjectBase
- KalturaLiveStats
- Kaltura::KalturaEntryLiveStats
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#peak_audience ⇒ Object
Returns the value of attribute peak_audience.
-
#peak_dvr_audience ⇒ Object
Returns the value of attribute peak_dvr_audience.
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
Instance Attribute Details
#entry_id ⇒ Object
Returns the value of attribute entry_id.
13626 13627 13628 |
# File 'lib/kaltura_types.rb', line 13626 def entry_id @entry_id end |
#peak_audience ⇒ Object
Returns the value of attribute peak_audience.
13627 13628 13629 |
# File 'lib/kaltura_types.rb', line 13627 def peak_audience @peak_audience end |
#peak_dvr_audience ⇒ Object
Returns the value of attribute peak_dvr_audience.
13628 13629 13630 |
# File 'lib/kaltura_types.rb', line 13628 def peak_dvr_audience @peak_dvr_audience end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 |
# File 'lib/kaltura_types.rb', line 13637 def from_xml(xml_element) super if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['peakAudience'] != nil self.peak_audience = xml_element.elements['peakAudience'].text end if xml_element.elements['peakDvrAudience'] != nil self.peak_dvr_audience = xml_element.elements['peakDvrAudience'].text end end |