Class: Kaltura::KalturaCategoryEntryBaseFilter

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

Direct Known Subclasses

KalturaCategoryEntryFilter

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

#category_full_ids_starts_withObject

Returns the value of attribute category_full_ids_starts_with.



11117
11118
11119
# File 'lib/kaltura_types.rb', line 11117

def category_full_ids_starts_with
  @category_full_ids_starts_with
end

#category_id_equalObject

Returns the value of attribute category_id_equal.



11111
11112
11113
# File 'lib/kaltura_types.rb', line 11111

def category_id_equal
  @category_id_equal
end

#category_id_inObject

Returns the value of attribute category_id_in.



11112
11113
11114
# File 'lib/kaltura_types.rb', line 11112

def category_id_in
  @category_id_in
end

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



11115
11116
11117
# File 'lib/kaltura_types.rb', line 11115

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.



11116
11117
11118
# File 'lib/kaltura_types.rb', line 11116

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#entry_id_equalObject

Returns the value of attribute entry_id_equal.



11113
11114
11115
# File 'lib/kaltura_types.rb', line 11113

def entry_id_equal
  @entry_id_equal
end

#entry_id_inObject

Returns the value of attribute entry_id_in.



11114
11115
11116
# File 'lib/kaltura_types.rb', line 11114

def entry_id_in
  @entry_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



11118
11119
11120
# File 'lib/kaltura_types.rb', line 11118

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



11119
11120
11121
# File 'lib/kaltura_types.rb', line 11119

def status_in
  @status_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11134
11135
11136
11137
11138
11139
11140
11141
11142
11143
11144
11145
# File 'lib/kaltura_types.rb', line 11134

def from_xml(xml_element)
	super
	self.category_id_equal = xml_element.elements['categoryIdEqual'].text
	self.category_id_in = xml_element.elements['categoryIdIn'].text
	self.entry_id_equal = xml_element.elements['entryIdEqual'].text
	self.entry_id_in = xml_element.elements['entryIdIn'].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.category_full_ids_starts_with = xml_element.elements['categoryFullIdsStartsWith'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
end