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.
12862 12863 12864 |
# File 'lib/kaltura_types.rb', line 12862 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.
12863 12864 12865 |
# File 'lib/kaltura_types.rb', line 12863 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#email_like ⇒ Object
Returns the value of attribute email_like.
12856 12857 12858 |
# File 'lib/kaltura_types.rb', line 12856 def email_like @email_like end |
#email_starts_with ⇒ Object
Returns the value of attribute email_starts_with.
12857 12858 12859 |
# File 'lib/kaltura_types.rb', line 12857 def email_starts_with @email_starts_with end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
12853 12854 12855 |
# File 'lib/kaltura_types.rb', line 12853 def partner_id_equal @partner_id_equal end |
#screen_name_like ⇒ Object
Returns the value of attribute screen_name_like.
12854 12855 12856 |
# File 'lib/kaltura_types.rb', line 12854 def screen_name_like @screen_name_like end |
#screen_name_starts_with ⇒ Object
Returns the value of attribute screen_name_starts_with.
12855 12856 12857 |
# File 'lib/kaltura_types.rb', line 12855 def screen_name_starts_with @screen_name_starts_with end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
12860 12861 12862 |
# File 'lib/kaltura_types.rb', line 12860 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
12861 12862 12863 |
# File 'lib/kaltura_types.rb', line 12861 def status_in @status_in end |
#tags_multi_like_and ⇒ Object
Returns the value of attribute tags_multi_like_and.
12859 12860 12861 |
# File 'lib/kaltura_types.rb', line 12859 def end |
#tags_multi_like_or ⇒ Object
Returns the value of attribute tags_multi_like_or.
12858 12859 12860 |
# File 'lib/kaltura_types.rb', line 12858 def end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
12864 12865 12866 |
# File 'lib/kaltura_types.rb', line 12864 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.
12865 12866 12867 |
# File 'lib/kaltura_types.rb', line 12865 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 |
# File 'lib/kaltura_types.rb', line 12886 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 |