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.
12787 12788 12789 |
# File 'lib/kaltura_types.rb', line 12787 def entry_id @entry_id end |
#peak_audience ⇒ Object
Returns the value of attribute peak_audience.
12788 12789 12790 |
# File 'lib/kaltura_types.rb', line 12788 def peak_audience @peak_audience end |
#peak_dvr_audience ⇒ Object
Returns the value of attribute peak_dvr_audience.
12789 12790 12791 |
# File 'lib/kaltura_types.rb', line 12789 def peak_dvr_audience @peak_dvr_audience end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 |
# File 'lib/kaltura_types.rb', line 12798 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 |