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.
6786 6787 6788 |
# File 'lib/kaltura_types.rb', line 6786 def entry_ids @entry_ids end |
#from_time ⇒ Object
Returns the value of attribute from_time.
6787 6788 6789 |
# File 'lib/kaltura_types.rb', line 6787 def from_time @from_time end |
#live ⇒ Object
Returns the value of attribute live.
6789 6790 6791 |
# File 'lib/kaltura_types.rb', line 6789 def live @live end |
#order_by ⇒ Object
Returns the value of attribute order_by.
6790 6791 6792 |
# File 'lib/kaltura_types.rb', line 6790 def order_by @order_by end |
#to_time ⇒ Object
Returns the value of attribute to_time.
6788 6789 6790 |
# File 'lib/kaltura_types.rb', line 6788 def to_time @to_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 |
# File 'lib/kaltura_types.rb', line 6802 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 |