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.
11395 11396 11397 |
# File 'lib/kaltura_types.rb', line 11395 def member_id_eq @member_id_eq end |
#member_id_in ⇒ Object
Returns the value of attribute member_id_in.
11396 11397 11398 |
# File 'lib/kaltura_types.rb', line 11396 def member_id_in @member_id_in end |
#member_permissions_match_and ⇒ Object
Returns the value of attribute member_permissions_match_and.
11398 11399 11400 |
# File 'lib/kaltura_types.rb', line 11398 def end |
#member_permissions_match_or ⇒ Object
Returns the value of attribute member_permissions_match_or.
11397 11398 11399 |
# File 'lib/kaltura_types.rb', line 11397 def end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 |
# File 'lib/kaltura_types.rb', line 11401 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 |