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.
6572 6573 6574 |
# File 'lib/kaltura_types.rb', line 6572 def entry_ids @entry_ids end |
#from_time ⇒ Object
Returns the value of attribute from_time.
6573 6574 6575 |
# File 'lib/kaltura_types.rb', line 6573 def from_time @from_time end |
#live ⇒ Object
Returns the value of attribute live.
6575 6576 6577 |
# File 'lib/kaltura_types.rb', line 6575 def live @live end |
#order_by ⇒ Object
Returns the value of attribute order_by.
6576 6577 6578 |
# File 'lib/kaltura_types.rb', line 6576 def order_by @order_by end |
#to_time ⇒ Object
Returns the value of attribute to_time.
6574 6575 6576 |
# File 'lib/kaltura_types.rb', line 6574 def to_time @to_time end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 |
# File 'lib/kaltura_types.rb', line 6588 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 |