Class: Kaltura::KalturaUserEntryFilter
- Inherits:
-
KalturaUserEntryBaseFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaUserEntryBaseFilter
- Kaltura::KalturaUserEntryFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaQuizUserEntryBaseFilter, KalturaRegistrationUserEntryFilter, KalturaViewHistoryUserEntryFilter, KalturaWatchLaterUserEntryFilter
Instance Attribute Summary collapse
-
#is_anonymous ⇒ Object
Returns the value of attribute is_anonymous.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#privacy_context_equal ⇒ Object
Returns the value of attribute privacy_context_equal.
-
#privacy_context_in ⇒ Object
Returns the value of attribute privacy_context_in.
-
#user_id_equal_current ⇒ Object
Returns the value of attribute user_id_equal_current.
Attributes inherited from KalturaUserEntryBaseFilter
#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #entry_id_equal, #entry_id_in, #entry_id_not_in, #extended_status_equal, #extended_status_in, #extended_status_not_in, #id_equal, #id_in, #id_not_in, #status_equal, #type_equal, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #user_id_in, #user_id_not_in
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#is_anonymous ⇒ Object
Returns the value of attribute is_anonymous.
19791 19792 19793 |
# File 'lib/kaltura_types.rb', line 19791 def is_anonymous @is_anonymous end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
19794 19795 19796 |
# File 'lib/kaltura_types.rb', line 19794 def partner_id @partner_id end |
#privacy_context_equal ⇒ Object
Returns the value of attribute privacy_context_equal.
19792 19793 19794 |
# File 'lib/kaltura_types.rb', line 19792 def privacy_context_equal @privacy_context_equal end |
#privacy_context_in ⇒ Object
Returns the value of attribute privacy_context_in.
19793 19794 19795 |
# File 'lib/kaltura_types.rb', line 19793 def privacy_context_in @privacy_context_in end |
#user_id_equal_current ⇒ Object
Returns the value of attribute user_id_equal_current.
19790 19791 19792 |
# File 'lib/kaltura_types.rb', line 19790 def user_id_equal_current @user_id_equal_current end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 |
# File 'lib/kaltura_types.rb', line 19806 def from_xml(xml_element) super if xml_element.elements['userIdEqualCurrent'] != nil self.user_id_equal_current = xml_element.elements['userIdEqualCurrent'].text end if xml_element.elements['isAnonymous'] != nil self.is_anonymous = xml_element.elements['isAnonymous'].text end if xml_element.elements['privacyContextEqual'] != nil self.privacy_context_equal = xml_element.elements['privacyContextEqual'].text end if xml_element.elements['privacyContextIn'] != nil self.privacy_context_in = xml_element.elements['privacyContextIn'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end end |