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.
-
#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.
13177 13178 13179 |
# File 'lib/kaltura_types.rb', line 13177 def first_name_starts_with @first_name_starts_with end |
#is_admin_equal ⇒ Object
Returns the value of attribute is_admin_equal.
13176 13177 13178 |
# File 'lib/kaltura_types.rb', line 13176 def is_admin_equal @is_admin_equal end |
#last_name_starts_with ⇒ Object
Returns the value of attribute last_name_starts_with.
13178 13179 13180 |
# File 'lib/kaltura_types.rb', line 13178 def last_name_starts_with @last_name_starts_with end |
#type_equal ⇒ Object
Returns the value of attribute type_equal.
13174 13175 13176 |
# File 'lib/kaltura_types.rb', line 13174 def type_equal @type_equal end |
#type_in ⇒ Object
Returns the value of attribute type_in.
13175 13176 13177 |
# File 'lib/kaltura_types.rb', line 13175 def type_in @type_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 |
# File 'lib/kaltura_types.rb', line 13187 def from_xml(xml_element) super 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 |