Class: Kaltura::KalturaBaseUserBaseFilter
- Inherits:
-
KalturaRelatedFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- Kaltura::KalturaBaseUserBaseFilter
- Defined in:
- lib/kaltura_types.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.
-
#email_like ⇒ Object
Returns the value of attribute email_like.
-
#email_starts_with ⇒ Object
Returns the value of attribute email_starts_with.
-
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
-
#screen_name_like ⇒ Object
Returns the value of attribute screen_name_like.
-
#screen_name_starts_with ⇒ Object
Returns the value of attribute screen_name_starts_with.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#tags_multi_like_and ⇒ Object
Returns the value of attribute tags_multi_like_and.
-
#tags_multi_like_or ⇒ Object
Returns the value of attribute tags_multi_like_or.
-
#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.
13170 13171 13172 |
# File 'lib/kaltura_types.rb', line 13170 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.
13171 13172 13173 |
# File 'lib/kaltura_types.rb', line 13171 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#email_like ⇒ Object
Returns the value of attribute email_like.
13164 13165 13166 |
# File 'lib/kaltura_types.rb', line 13164 def email_like @email_like end |
#email_starts_with ⇒ Object
Returns the value of attribute email_starts_with.
13165 13166 13167 |
# File 'lib/kaltura_types.rb', line 13165 def email_starts_with @email_starts_with end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
13161 13162 13163 |
# File 'lib/kaltura_types.rb', line 13161 def partner_id_equal @partner_id_equal end |
#screen_name_like ⇒ Object
Returns the value of attribute screen_name_like.
13162 13163 13164 |
# File 'lib/kaltura_types.rb', line 13162 def screen_name_like @screen_name_like end |
#screen_name_starts_with ⇒ Object
Returns the value of attribute screen_name_starts_with.
13163 13164 13165 |
# File 'lib/kaltura_types.rb', line 13163 def screen_name_starts_with @screen_name_starts_with end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
13168 13169 13170 |
# File 'lib/kaltura_types.rb', line 13168 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
13169 13170 13171 |
# File 'lib/kaltura_types.rb', line 13169 def status_in @status_in end |
#tags_multi_like_and ⇒ Object
Returns the value of attribute tags_multi_like_and.
13167 13168 13169 |
# File 'lib/kaltura_types.rb', line 13167 def end |
#tags_multi_like_or ⇒ Object
Returns the value of attribute tags_multi_like_or.
13166 13167 13168 |
# File 'lib/kaltura_types.rb', line 13166 def end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
13172 13173 13174 |
# File 'lib/kaltura_types.rb', line 13172 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.
13173 13174 13175 |
# File 'lib/kaltura_types.rb', line 13173 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 |
# File 'lib/kaltura_types.rb', line 13194 def from_xml(xml_element) super if xml_element.elements['partnerIdEqual'] != nil self.partner_id_equal = xml_element.elements['partnerIdEqual'].text end if xml_element.elements['screenNameLike'] != nil self.screen_name_like = xml_element.elements['screenNameLike'].text end if xml_element.elements['screenNameStartsWith'] != nil self.screen_name_starts_with = xml_element.elements['screenNameStartsWith'].text end if xml_element.elements['emailLike'] != nil self.email_like = xml_element.elements['emailLike'].text end if xml_element.elements['emailStartsWith'] != nil self.email_starts_with = xml_element.elements['emailStartsWith'].text end if xml_element.elements['tagsMultiLikeOr'] != nil self. = xml_element.elements['tagsMultiLikeOr'].text end if xml_element.elements['tagsMultiLikeAnd'] != nil self. = xml_element.elements['tagsMultiLikeAnd'].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['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 end |