Class: Kaltura::KalturaDistributionProfileBaseFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb

Direct Known Subclasses

KalturaDistributionProfileFilter

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.



1225
1226
1227
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1225

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.



1226
1227
1228
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1226

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



1223
1224
1225
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1223

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



1224
1225
1226
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1224

def id_in
  @id_in
end

#status_equalObject

Returns the value of attribute status_equal.



1229
1230
1231
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1229

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



1230
1231
1232
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1230

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



1227
1228
1229
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1227

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.



1228
1229
1230
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1228

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1251

def from_xml(xml_element)
	super
	if xml_element.elements['idEqual'] != nil
		self.id_equal = xml_element.elements['idEqual'].text
	end
	if xml_element.elements['idIn'] != nil
		self.id_in = xml_element.elements['idIn'].text
	end
	if xml_element.elements['createdAtGreaterThanOrEqual'] != nil
		self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	end
	if xml_element.elements['createdAtLessThanOrEqual'] != nil
		self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
	end
	if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil
		self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	end
	if xml_element.elements['updatedAtLessThanOrEqual'] != nil
		self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	end
	if xml_element.elements['statusEqual'] != nil
		self.status_equal = xml_element.elements['statusEqual'].text
	end
	if xml_element.elements['statusIn'] != nil
		self.status_in = xml_element.elements['statusIn'].text
	end
end