Class: Kaltura::KalturaDrmProfileBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaDrmProfileBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_drm_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#name_like ⇒ Object
Returns the value of attribute name_like.
-
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
-
#partner_id_in ⇒ Object
Returns the value of attribute partner_id_in.
-
#provider_equal ⇒ Object
Returns the value of attribute provider_equal.
-
#provider_in ⇒ Object
Returns the value of attribute provider_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#id_equal ⇒ Object
Returns the value of attribute id_equal.
353 354 355 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 353 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
354 355 356 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 354 def id_in @id_in end |
#name_like ⇒ Object
Returns the value of attribute name_like.
357 358 359 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 357 def name_like @name_like end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
355 356 357 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 355 def partner_id_equal @partner_id_equal end |
#partner_id_in ⇒ Object
Returns the value of attribute partner_id_in.
356 357 358 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 356 def partner_id_in @partner_id_in end |
#provider_equal ⇒ Object
Returns the value of attribute provider_equal.
358 359 360 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 358 def provider_equal @provider_equal end |
#provider_in ⇒ Object
Returns the value of attribute provider_in.
359 360 361 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 359 def provider_in @provider_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
360 361 362 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 360 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
361 362 363 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 361 def status_in @status_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
# File 'lib/kaltura_plugins/kaltura_drm_client_plugin.rb', line 373 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['partnerIdEqual'] != nil self.partner_id_equal = xml_element.elements['partnerIdEqual'].text end if xml_element.elements['partnerIdIn'] != nil self.partner_id_in = xml_element.elements['partnerIdIn'].text end if xml_element.elements['nameLike'] != nil self.name_like = xml_element.elements['nameLike'].text end if xml_element.elements['providerEqual'] != nil self.provider_equal = xml_element.elements['providerEqual'].text end if xml_element.elements['providerIn'] != nil self.provider_in = xml_element.elements['providerIn'].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 end |