Class: Kaltura::KalturaReachProfileBaseFilter
- Inherits:
-
KalturaRelatedFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- Kaltura::KalturaReachProfileBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
-
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#profile_type_equal ⇒ Object
Returns the value of attribute profile_type_equal.
-
#profile_type_in ⇒ Object
Returns the value of attribute profile_type_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
-
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
1336 1337 1338 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1336 def created_at_greater_than_or_equal @created_at_greater_than_or_equal end |
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
1337 1338 1339 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1337 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
1334 1335 1336 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1334 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
1335 1336 1337 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1335 def id_in @id_in end |
#profile_type_equal ⇒ Object
Returns the value of attribute profile_type_equal.
1342 1343 1344 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1342 def profile_type_equal @profile_type_equal end |
#profile_type_in ⇒ Object
Returns the value of attribute profile_type_in.
1343 1344 1345 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1343 def profile_type_in @profile_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
1340 1341 1342 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1340 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
1341 1342 1343 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1341 def status_in @status_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
1338 1339 1340 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1338 def updated_at_greater_than_or_equal @updated_at_greater_than_or_equal end |
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
1339 1340 1341 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1339 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1367 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 |