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.
12959 12960 12961 |
# File 'lib/kaltura_types.rb', line 12959 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.
12960 12961 12962 |
# File 'lib/kaltura_types.rb', line 12960 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#email_like ⇒ Object
Returns the value of attribute email_like.
12953 12954 12955 |
# File 'lib/kaltura_types.rb', line 12953 def email_like @email_like end |
#email_starts_with ⇒ Object
Returns the value of attribute email_starts_with.
12954 12955 12956 |
# File 'lib/kaltura_types.rb', line 12954 def email_starts_with @email_starts_with end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
12950 12951 12952 |
# File 'lib/kaltura_types.rb', line 12950 def partner_id_equal @partner_id_equal end |
#screen_name_like ⇒ Object
Returns the value of attribute screen_name_like.
12951 12952 12953 |
# File 'lib/kaltura_types.rb', line 12951 def screen_name_like @screen_name_like end |
#screen_name_starts_with ⇒ Object
Returns the value of attribute screen_name_starts_with.
12952 12953 12954 |
# File 'lib/kaltura_types.rb', line 12952 def screen_name_starts_with @screen_name_starts_with end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
12957 12958 12959 |
# File 'lib/kaltura_types.rb', line 12957 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
12958 12959 12960 |
# File 'lib/kaltura_types.rb', line 12958 def status_in @status_in end |
#tags_multi_like_and ⇒ Object
Returns the value of attribute tags_multi_like_and.
12956 12957 12958 |
# File 'lib/kaltura_types.rb', line 12956 def end |
#tags_multi_like_or ⇒ Object
Returns the value of attribute tags_multi_like_or.
12955 12956 12957 |
# File 'lib/kaltura_types.rb', line 12955 def end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
12961 12962 12963 |
# File 'lib/kaltura_types.rb', line 12961 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.
12962 12963 12964 |
# File 'lib/kaltura_types.rb', line 12962 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 |
# File 'lib/kaltura_types.rb', line 12983 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 |