Class: Kaltura::KalturaReportBaseFilter

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

Direct Known Subclasses

KalturaReportFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#id_equalObject

Returns the value of attribute id_equal.



9646
9647
9648
# File 'lib/kaltura_types.rb', line 9646

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



9647
9648
9649
# File 'lib/kaltura_types.rb', line 9647

def id_in
  @id_in
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



9648
9649
9650
# File 'lib/kaltura_types.rb', line 9648

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



9649
9650
9651
# File 'lib/kaltura_types.rb', line 9649

def partner_id_in
  @partner_id_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



9650
9651
9652
# File 'lib/kaltura_types.rb', line 9650

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



9651
9652
9653
# File 'lib/kaltura_types.rb', line 9651

def system_name_in
  @system_name_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9660
9661
9662
9663
9664
9665
9666
9667
9668
# File 'lib/kaltura_types.rb', line 9660

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].text
	self.partner_id_equal = xml_element.elements['partnerIdEqual'].text
	self.partner_id_in = xml_element.elements['partnerIdIn'].text
	self.system_name_equal = xml_element.elements['systemNameEqual'].text
	self.system_name_in = xml_element.elements['systemNameIn'].text
end