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.
13592 13593 13594 |
# File 'lib/kaltura_types.rb', line 13592 def entry_id @entry_id end |
#peak_audience ⇒ Object
Returns the value of attribute peak_audience.
13593 13594 13595 |
# File 'lib/kaltura_types.rb', line 13593 def peak_audience @peak_audience end |
#peak_dvr_audience ⇒ Object
Returns the value of attribute peak_dvr_audience.
13594 13595 13596 |
# File 'lib/kaltura_types.rb', line 13594 def peak_dvr_audience @peak_dvr_audience end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 |
# File 'lib/kaltura_types.rb', line 13603 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 |