Class: Kaltura::KalturaConversionProfileBaseFilter

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

Direct Known Subclasses

KalturaConversionProfileFilter

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

#default_entry_id_equalObject

Returns the value of attribute default_entry_id_equal.



11211
11212
11213
# File 'lib/kaltura_types.rb', line 11211

def default_entry_id_equal
  @default_entry_id_equal
end

#default_entry_id_inObject

Returns the value of attribute default_entry_id_in.



11212
11213
11214
# File 'lib/kaltura_types.rb', line 11212

def default_entry_id_in
  @default_entry_id_in
end

#id_equalObject

Returns the value of attribute id_equal.



11200
11201
11202
# File 'lib/kaltura_types.rb', line 11200

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



11201
11202
11203
# File 'lib/kaltura_types.rb', line 11201

def id_in
  @id_in
end

#name_equalObject

Returns the value of attribute name_equal.



11206
11207
11208
# File 'lib/kaltura_types.rb', line 11206

def name_equal
  @name_equal
end

#status_equalObject

Returns the value of attribute status_equal.



11202
11203
11204
# File 'lib/kaltura_types.rb', line 11202

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



11203
11204
11205
# File 'lib/kaltura_types.rb', line 11203

def status_in
  @status_in
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



11207
11208
11209
# File 'lib/kaltura_types.rb', line 11207

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



11208
11209
11210
# File 'lib/kaltura_types.rb', line 11208

def system_name_in
  @system_name_in
end

#tags_multi_like_andObject

Returns the value of attribute tags_multi_like_and.



11210
11211
11212
# File 'lib/kaltura_types.rb', line 11210

def tags_multi_like_and
  @tags_multi_like_and
end

#tags_multi_like_orObject

Returns the value of attribute tags_multi_like_or.



11209
11210
11211
# File 'lib/kaltura_types.rb', line 11209

def tags_multi_like_or
  @tags_multi_like_or
end

#type_equalObject

Returns the value of attribute type_equal.



11204
11205
11206
# File 'lib/kaltura_types.rb', line 11204

def type_equal
  @type_equal
end

#type_inObject

Returns the value of attribute type_in.



11205
11206
11207
# File 'lib/kaltura_types.rb', line 11205

def type_in
  @type_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11218
11219
11220
11221
11222
11223
11224
11225
11226
11227
11228
11229
11230
11231
11232
11233
# File 'lib/kaltura_types.rb', line 11218

def from_xml(xml_element)
  super
  self.id_equal = xml_element.elements['idEqual'].text
  self.id_in = xml_element.elements['idIn'].text
  self.status_equal = xml_element.elements['statusEqual'].text
  self.status_in = xml_element.elements['statusIn'].text
  self.type_equal = xml_element.elements['typeEqual'].text
  self.type_in = xml_element.elements['typeIn'].text
  self.name_equal = xml_element.elements['nameEqual'].text
  self.system_name_equal = xml_element.elements['systemNameEqual'].text
  self.system_name_in = xml_element.elements['systemNameIn'].text
  self.tags_multi_like_or = xml_element.elements['tagsMultiLikeOr'].text
  self.tags_multi_like_and = xml_element.elements['tagsMultiLikeAnd'].text
  self.default_entry_id_equal = xml_element.elements['defaultEntryIdEqual'].text
  self.default_entry_id_in = xml_element.elements['defaultEntryIdIn'].text
end