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.



3446
3447
3448
# File 'lib/kaltura_types.rb', line 3446

def entry_ids
  @entry_ids
end

#from_timeObject

Returns the value of attribute from_time.



3447
3448
3449
# File 'lib/kaltura_types.rb', line 3447

def from_time
  @from_time
end

#liveObject

Returns the value of attribute live.



3449
3450
3451
# File 'lib/kaltura_types.rb', line 3449

def live
  @live
end

#order_byObject

Returns the value of attribute order_by.



3450
3451
3452
# File 'lib/kaltura_types.rb', line 3450

def order_by
  @order_by
end

#to_timeObject

Returns the value of attribute to_time.



3448
3449
3450
# File 'lib/kaltura_types.rb', line 3448

def to_time
  @to_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3462
3463
3464
3465
3466
3467
3468
3469
# File 'lib/kaltura_types.rb', line 3462

def from_xml(xml_element)
	super
	self.entry_ids = xml_element.elements['entryIds'].text
	self.from_time = xml_element.elements['fromTime'].text
	self.to_time = xml_element.elements['toTime'].text
	self.live = xml_element.elements['live'].text
	self.order_by = xml_element.elements['orderBy'].text
end