Class: Kaltura::KalturaEventNotificationTemplateBaseFilter

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

Direct Known Subclasses

KalturaEventNotificationTemplateFilter

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.



279
280
281
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 279

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.



280
281
282
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 280

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



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

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



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

def id_in
  @id_in
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



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

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



272
273
274
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 272

def partner_id_in
  @partner_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



277
278
279
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 277

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



278
279
280
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 278

def status_in
  @status_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



273
274
275
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 273

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



274
275
276
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 274

def system_name_in
  @system_name_in
end

#type_equalObject

Returns the value of attribute type_equal.



275
276
277
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 275

def type_equal
  @type_equal
end

#type_inObject

Returns the value of attribute type_in.



276
277
278
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 276

def type_in
  @type_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



281
282
283
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 281

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.



282
283
284
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 282

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 306

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.type_equal = xml_element.elements['typeEqual'].text
  self.type_in = xml_element.elements['typeIn'].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
end