Class: Kaltura::KalturaGenericDistributionProviderBaseFilter

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDistributionProviderBaseFilter

#type_equal, #type_in

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.



1494
1495
1496
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1494

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.



1495
1496
1497
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1495

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



1492
1493
1494
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1492

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



1493
1494
1495
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1493

def id_in
  @id_in
end

#is_default_equalObject

Returns the value of attribute is_default_equal.



1500
1501
1502
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1500

def is_default_equal
  @is_default_equal
end

#is_default_inObject

Returns the value of attribute is_default_in.



1501
1502
1503
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1501

def is_default_in
  @is_default_in
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



1498
1499
1500
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1498

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



1499
1500
1501
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1499

def partner_id_in
  @partner_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



1502
1503
1504
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1502

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



1503
1504
1505
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1503

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



1496
1497
1498
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1496

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.



1497
1498
1499
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1497

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1530

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].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.partner_id_equal = xml_element.elements['partnerIdEqual'].text
	self.partner_id_in = xml_element.elements['partnerIdIn'].text
	self.is_default_equal = xml_element.elements['isDefaultEqual'].text
	self.is_default_in = xml_element.elements['isDefaultIn'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
end