Class: Kaltura::KalturaAccessControlBaseFilter

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

Direct Known Subclasses

KalturaAccessControlFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



10702
10703
10704
# File 'lib/kaltura_types.rb', line 10702

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



10703
10704
10705
# File 'lib/kaltura_types.rb', line 10703

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



10698
10699
10700
# File 'lib/kaltura_types.rb', line 10698

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



10699
10700
10701
# File 'lib/kaltura_types.rb', line 10699

def id_in
  @id_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



10700
10701
10702
# File 'lib/kaltura_types.rb', line 10700

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



10701
10702
10703
# File 'lib/kaltura_types.rb', line 10701

def system_name_in
  @system_name_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10715
10716
10717
10718
10719
10720
10721
10722
10723
# File 'lib/kaltura_types.rb', line 10715

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].text
	self.system_name_equal = xml_element.elements['systemNameEqual'].text
	self.system_name_in = xml_element.elements['systemNameIn'].text
	self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
end