Class: Kaltura::KalturaLiveReportInputFilter

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#entry_idsObject

Returns the value of attribute entry_ids.



6507
6508
6509
# File 'lib/kaltura_types.rb', line 6507

def entry_ids
  @entry_ids
end

#from_timeObject

Returns the value of attribute from_time.



6508
6509
6510
# File 'lib/kaltura_types.rb', line 6508

def from_time
  @from_time
end

#liveObject

Returns the value of attribute live.



6510
6511
6512
# File 'lib/kaltura_types.rb', line 6510

def live
  @live
end

#order_byObject

Returns the value of attribute order_by.



6511
6512
6513
# File 'lib/kaltura_types.rb', line 6511

def order_by
  @order_by
end

#to_timeObject

Returns the value of attribute to_time.



6509
6510
6511
# File 'lib/kaltura_types.rb', line 6509

def to_time
  @to_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
# File 'lib/kaltura_types.rb', line 6523

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