Class: Kaltura::KalturaCategoryUserAdvancedFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#member_id_eqObject

Returns the value of attribute member_id_eq.



7792
7793
7794
# File 'lib/kaltura_types.rb', line 7792

def member_id_eq
  @member_id_eq
end

#member_id_inObject

Returns the value of attribute member_id_in.



7793
7794
7795
# File 'lib/kaltura_types.rb', line 7793

def member_id_in
  @member_id_in
end

#member_permissions_match_andObject

Returns the value of attribute member_permissions_match_and.



7795
7796
7797
# File 'lib/kaltura_types.rb', line 7795

def member_permissions_match_and
  @member_permissions_match_and
end

#member_permissions_match_orObject

Returns the value of attribute member_permissions_match_or.



7794
7795
7796
# File 'lib/kaltura_types.rb', line 7794

def member_permissions_match_or
  @member_permissions_match_or
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7798
7799
7800
7801
7802
7803
7804
# File 'lib/kaltura_types.rb', line 7798

def from_xml(xml_element)
	super
	self.member_id_eq = xml_element.elements['memberIdEq'].text
	self.member_id_in = xml_element.elements['memberIdIn'].text
	self.member_permissions_match_or = xml_element.elements['memberPermissionsMatchOr'].text
	self.member_permissions_match_and = xml_element.elements['memberPermissionsMatchAnd'].text
end