Class: Kaltura::KalturaResponseProfileBaseFilter

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

Direct Known Subclasses

KalturaResponseProfileFilter

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.



9730
9731
9732
# File 'lib/kaltura_types.rb', line 9730

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.



9731
9732
9733
# File 'lib/kaltura_types.rb', line 9731

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



9726
9727
9728
# File 'lib/kaltura_types.rb', line 9726

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



9727
9728
9729
# File 'lib/kaltura_types.rb', line 9727

def id_in
  @id_in
end

#status_equalObject

Returns the value of attribute status_equal.



9734
9735
9736
# File 'lib/kaltura_types.rb', line 9734

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



9735
9736
9737
# File 'lib/kaltura_types.rb', line 9735

def status_in
  @status_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



9728
9729
9730
# File 'lib/kaltura_types.rb', line 9728

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



9729
9730
9731
# File 'lib/kaltura_types.rb', line 9729

def system_name_in
  @system_name_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



9732
9733
9734
# File 'lib/kaltura_types.rb', line 9732

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



9733
9734
9735
# File 'lib/kaltura_types.rb', line 9733

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9756
9757
9758
9759
9760
9761
9762
9763
9764
9765
9766
9767
9768
# File 'lib/kaltura_types.rb', line 9756

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
	self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
end