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.



6801
6802
6803
# File 'lib/kaltura_types.rb', line 6801

def entry_ids
  @entry_ids
end

#from_timeObject

Returns the value of attribute from_time.



6802
6803
6804
# File 'lib/kaltura_types.rb', line 6802

def from_time
  @from_time
end

#liveObject

Returns the value of attribute live.



6804
6805
6806
# File 'lib/kaltura_types.rb', line 6804

def live
  @live
end

#order_byObject

Returns the value of attribute order_by.



6805
6806
6807
# File 'lib/kaltura_types.rb', line 6805

def order_by
  @order_by
end

#to_timeObject

Returns the value of attribute to_time.



6803
6804
6805
# File 'lib/kaltura_types.rb', line 6803

def to_time
  @to_time
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
# File 'lib/kaltura_types.rb', line 6817

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