Class: Kaltura::KalturaCategoryUserAdvancedFilter
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaCategoryUserAdvancedFilter
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#member_id_eq ⇒ Object
Returns the value of attribute member_id_eq.
-
#member_id_in ⇒ Object
Returns the value of attribute member_id_in.
-
#member_permissions_match_and ⇒ Object
Returns the value of attribute member_permissions_match_and.
-
#member_permissions_match_or ⇒ Object
Returns the value of attribute member_permissions_match_or.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#member_id_eq ⇒ Object
Returns the value of attribute member_id_eq.
12050 12051 12052 |
# File 'lib/kaltura_types.rb', line 12050 def member_id_eq @member_id_eq end |
#member_id_in ⇒ Object
Returns the value of attribute member_id_in.
12051 12052 12053 |
# File 'lib/kaltura_types.rb', line 12051 def member_id_in @member_id_in end |
#member_permissions_match_and ⇒ Object
Returns the value of attribute member_permissions_match_and.
12053 12054 12055 |
# File 'lib/kaltura_types.rb', line 12053 def end |
#member_permissions_match_or ⇒ Object
Returns the value of attribute member_permissions_match_or.
12052 12053 12054 |
# File 'lib/kaltura_types.rb', line 12052 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 |
# File 'lib/kaltura_types.rb', line 12056 def from_xml(xml_element) super if xml_element.elements['memberIdEq'] != nil self.member_id_eq = xml_element.elements['memberIdEq'].text end if xml_element.elements['memberIdIn'] != nil self.member_id_in = xml_element.elements['memberIdIn'].text end if xml_element.elements['memberPermissionsMatchOr'] != nil self. = xml_element.elements['memberPermissionsMatchOr'].text end if xml_element.elements['memberPermissionsMatchAnd'] != nil self. = xml_element.elements['memberPermissionsMatchAnd'].text end end |