Class: Kaltura::KalturaLiveReportInputFilter
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaLiveReportInputFilter
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
-
#from_time ⇒ Object
Returns the value of attribute from_time.
-
#live ⇒ Object
Returns the value of attribute live.
-
#order_by ⇒ Object
Returns the value of attribute order_by.
-
#to_time ⇒ Object
Returns the value of attribute to_time.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_ids ⇒ Object
Returns the value of attribute entry_ids.
6853 6854 6855 |
# File 'lib/kaltura_types.rb', line 6853 def entry_ids @entry_ids end |
#from_time ⇒ Object
Returns the value of attribute from_time.
6854 6855 6856 |
# File 'lib/kaltura_types.rb', line 6854 def from_time @from_time end |
#live ⇒ Object
Returns the value of attribute live.
6856 6857 6858 |
# File 'lib/kaltura_types.rb', line 6856 def live @live end |
#order_by ⇒ Object
Returns the value of attribute order_by.
6857 6858 6859 |
# File 'lib/kaltura_types.rb', line 6857 def order_by @order_by end |
#to_time ⇒ Object
Returns the value of attribute to_time.
6855 6856 6857 |
# File 'lib/kaltura_types.rb', line 6855 def to_time @to_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 |
# File 'lib/kaltura_types.rb', line 6869 def from_xml(xml_element) super if xml_element.elements['entryIds'] != nil self.entry_ids = xml_element.elements['entryIds'].text end if xml_element.elements['fromTime'] != nil self.from_time = xml_element.elements['fromTime'].text end if xml_element.elements['toTime'] != nil self.to_time = xml_element.elements['toTime'].text end if xml_element.elements['live'] != nil self.live = xml_element.elements['live'].text end if xml_element.elements['orderBy'] != nil self.order_by = xml_element.elements['orderBy'].text end end |