Class: Kaltura::KalturaUserBaseFilter
- Inherits:
-
KalturaBaseUserFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaBaseUserBaseFilter
- KalturaBaseUserFilter
- Kaltura::KalturaUserBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#first_name_starts_with ⇒ Object
Returns the value of attribute first_name_starts_with.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#is_admin_equal ⇒ Object
Returns the value of attribute is_admin_equal.
-
#last_name_starts_with ⇒ Object
Returns the value of attribute last_name_starts_with.
-
#type_equal ⇒ Object
Returns the value of attribute type_equal.
-
#type_in ⇒ Object
Returns the value of attribute type_in.
Attributes inherited from KalturaBaseUserBaseFilter
#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #email_like, #email_starts_with, #partner_id_equal, #screen_name_like, #screen_name_starts_with, #status_equal, #status_in, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #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
#first_name_starts_with ⇒ Object
Returns the value of attribute first_name_starts_with.
13345 13346 13347 |
# File 'lib/kaltura_types.rb', line 13345 def first_name_starts_with @first_name_starts_with end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
13340 13341 13342 |
# File 'lib/kaltura_types.rb', line 13340 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
13341 13342 13343 |
# File 'lib/kaltura_types.rb', line 13341 def id_in @id_in end |
#is_admin_equal ⇒ Object
Returns the value of attribute is_admin_equal.
13344 13345 13346 |
# File 'lib/kaltura_types.rb', line 13344 def is_admin_equal @is_admin_equal end |
#last_name_starts_with ⇒ Object
Returns the value of attribute last_name_starts_with.
13346 13347 13348 |
# File 'lib/kaltura_types.rb', line 13346 def last_name_starts_with @last_name_starts_with end |
#type_equal ⇒ Object
Returns the value of attribute type_equal.
13342 13343 13344 |
# File 'lib/kaltura_types.rb', line 13342 def type_equal @type_equal end |
#type_in ⇒ Object
Returns the value of attribute type_in.
13343 13344 13345 |
# File 'lib/kaltura_types.rb', line 13343 def type_in @type_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 |
# File 'lib/kaltura_types.rb', line 13355 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['typeEqual'] != nil self.type_equal = xml_element.elements['typeEqual'].text end if xml_element.elements['typeIn'] != nil self.type_in = xml_element.elements['typeIn'].text end if xml_element.elements['isAdminEqual'] != nil self.is_admin_equal = xml_element.elements['isAdminEqual'].text end if xml_element.elements['firstNameStartsWith'] != nil self.first_name_starts_with = xml_element.elements['firstNameStartsWith'].text end if xml_element.elements['lastNameStartsWith'] != nil self.last_name_starts_with = xml_element.elements['lastNameStartsWith'].text end end |