Class: Kaltura::KalturaScheduledTaskProfileBaseFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb

Direct Known Subclasses

KalturaScheduledTaskProfileFilter

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.



266
267
268
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 266

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.



267
268
269
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 267

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



258
259
260
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 258

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



259
260
261
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 259

def id_in
  @id_in
end

#last_execution_started_at_greater_than_or_equalObject

Returns the value of attribute last_execution_started_at_greater_than_or_equal.



270
271
272
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 270

def last_execution_started_at_greater_than_or_equal
  @last_execution_started_at_greater_than_or_equal
end

#last_execution_started_at_less_than_or_equalObject

Returns the value of attribute last_execution_started_at_less_than_or_equal.



271
272
273
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 271

def last_execution_started_at_less_than_or_equal
  @last_execution_started_at_less_than_or_equal
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



260
261
262
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 260

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



261
262
263
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 261

def partner_id_in
  @partner_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



264
265
266
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 264

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



265
266
267
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 265

def status_in
  @status_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



262
263
264
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 262

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



263
264
265
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 263

def system_name_in
  @system_name_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



268
269
270
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 268

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.



269
270
271
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 269

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb', line 301

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
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
	self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
	self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	self.last_execution_started_at_greater_than_or_equal = xml_element.elements['lastExecutionStartedAtGreaterThanOrEqual'].text
	self.last_execution_started_at_less_than_or_equal = xml_element.elements['lastExecutionStartedAtLessThanOrEqual'].text
end