Class: Kaltura::KalturaUserBaseFilter

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

Direct Known Subclasses

KalturaUserFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaBaseUserBaseFilter

#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #email_like, #email_starts_with, #partner_id_equal, #screen_name_like, #screen_name_starts_with, #status_equal, #status_in, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal

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

#first_name_starts_withObject

Returns the value of attribute first_name_starts_with.



13311
13312
13313
# File 'lib/kaltura_types.rb', line 13311

def first_name_starts_with
  @first_name_starts_with
end

#id_equalObject

Returns the value of attribute id_equal.



13306
13307
13308
# File 'lib/kaltura_types.rb', line 13306

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



13307
13308
13309
# File 'lib/kaltura_types.rb', line 13307

def id_in
  @id_in
end

#is_admin_equalObject

Returns the value of attribute is_admin_equal.



13310
13311
13312
# File 'lib/kaltura_types.rb', line 13310

def is_admin_equal
  @is_admin_equal
end

#last_name_starts_withObject

Returns the value of attribute last_name_starts_with.



13312
13313
13314
# File 'lib/kaltura_types.rb', line 13312

def last_name_starts_with
  @last_name_starts_with
end

#type_equalObject

Returns the value of attribute type_equal.



13308
13309
13310
# File 'lib/kaltura_types.rb', line 13308

def type_equal
  @type_equal
end

#type_inObject

Returns the value of attribute type_in.



13309
13310
13311
# File 'lib/kaltura_types.rb', line 13309

def type_in
  @type_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13321
13322
13323
13324
13325
13326
13327
13328
13329
13330
13331
13332
13333
13334
13335
13336
13337
13338
13339
13340
13341
13342
13343
13344
# File 'lib/kaltura_types.rb', line 13321

def from_xml(xml_element)
	super
	if xml_element.elements['idEqual'] != nil
		self.id_equal = xml_element.elements['idEqual'].text
	end
	if xml_element.elements['idIn'] != nil
		self.id_in = xml_element.elements['idIn'].text
	end
	if xml_element.elements['typeEqual'] != nil
		self.type_equal = xml_element.elements['typeEqual'].text
	end
	if xml_element.elements['typeIn'] != nil
		self.type_in = xml_element.elements['typeIn'].text
	end
	if xml_element.elements['isAdminEqual'] != nil
		self.is_admin_equal = xml_element.elements['isAdminEqual'].text
	end
	if xml_element.elements['firstNameStartsWith'] != nil
		self.first_name_starts_with = xml_element.elements['firstNameStartsWith'].text
	end
	if xml_element.elements['lastNameStartsWith'] != nil
		self.last_name_starts_with = xml_element.elements['lastNameStartsWith'].text
	end
end