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.
6879 6880 6881 |
# File 'lib/kaltura_types.rb', line 6879 def entry_ids @entry_ids end |
#from_time ⇒ Object
Returns the value of attribute from_time.
6880 6881 6882 |
# File 'lib/kaltura_types.rb', line 6880 def from_time @from_time end |
#live ⇒ Object
Returns the value of attribute live.
6882 6883 6884 |
# File 'lib/kaltura_types.rb', line 6882 def live @live end |
#order_by ⇒ Object
Returns the value of attribute order_by.
6883 6884 6885 |
# File 'lib/kaltura_types.rb', line 6883 def order_by @order_by end |
#to_time ⇒ Object
Returns the value of attribute to_time.
6881 6882 6883 |
# File 'lib/kaltura_types.rb', line 6881 def to_time @to_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 |
# File 'lib/kaltura_types.rb', line 6895 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 |