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.
6568 6569 6570 |
# File 'lib/kaltura_types.rb', line 6568 def entry_ids @entry_ids end |
#from_time ⇒ Object
Returns the value of attribute from_time.
6569 6570 6571 |
# File 'lib/kaltura_types.rb', line 6569 def from_time @from_time end |
#live ⇒ Object
Returns the value of attribute live.
6571 6572 6573 |
# File 'lib/kaltura_types.rb', line 6571 def live @live end |
#order_by ⇒ Object
Returns the value of attribute order_by.
6572 6573 6574 |
# File 'lib/kaltura_types.rb', line 6572 def order_by @order_by end |
#to_time ⇒ Object
Returns the value of attribute to_time.
6570 6571 6572 |
# File 'lib/kaltura_types.rb', line 6570 def to_time @to_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 |
# File 'lib/kaltura_types.rb', line 6584 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 |