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.
13098 13099 13100 |
# File 'lib/kaltura_types.rb', line 13098 def entry_id @entry_id end |
#peak_audience ⇒ Object
Returns the value of attribute peak_audience.
13099 13100 13101 |
# File 'lib/kaltura_types.rb', line 13099 def peak_audience @peak_audience end |
#peak_dvr_audience ⇒ Object
Returns the value of attribute peak_dvr_audience.
13100 13101 13102 |
# File 'lib/kaltura_types.rb', line 13100 def peak_dvr_audience @peak_dvr_audience end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 |
# File 'lib/kaltura_types.rb', line 13109 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 |