Class: Kaltura::KalturaReachProfileBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Direct Known Subclasses

KalturaReachProfileFilter

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

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



1299
1300
1301
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1299

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



1300
1301
1302
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1300

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



1297
1298
1299
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1297

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



1298
1299
1300
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1298

def id_in
  @id_in
end

#profile_type_equalObject

Returns the value of attribute profile_type_equal.



1305
1306
1307
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1305

def profile_type_equal
  @profile_type_equal
end

#profile_type_inObject

Returns the value of attribute profile_type_in.



1306
1307
1308
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1306

def profile_type_in
  @profile_type_in
end

#status_equalObject

Returns the value of attribute status_equal.



1303
1304
1305
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1303

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



1304
1305
1306
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1304

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



1301
1302
1303
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1301

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



1302
1303
1304
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1302

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1330

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['createdAtGreaterThanOrEqual'] != nil
		self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	end
	if xml_element.elements['createdAtLessThanOrEqual'] != nil
		self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
	end
	if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil
		self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	end
	if xml_element.elements['updatedAtLessThanOrEqual'] != nil
		self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	end
	if xml_element.elements['statusEqual'] != nil
		self.status_equal = xml_element.elements['statusEqual'].text
	end
	if xml_element.elements['statusIn'] != nil
		self.status_in = xml_element.elements['statusIn'].text
	end
	if xml_element.elements['profileTypeEqual'] != nil
		self.profile_type_equal = xml_element.elements['profileTypeEqual'].text
	end
	if xml_element.elements['profileTypeIn'] != nil
		self.profile_type_in = xml_element.elements['profileTypeIn'].text
	end
end