Class: Kaltura::KalturaVendorCatalogItemBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Direct Known Subclasses

KalturaVendorCatalogItemFilter

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.



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

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.



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

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_reach_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_reach_client_plugin.rb', line 1493

def id_in
  @id_in
end

#id_not_inObject

Returns the value of attribute id_not_in.



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

def id_not_in
  @id_not_in
end

#service_feature_equalObject

Returns the value of attribute service_feature_equal.



1505
1506
1507
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1505

def service_feature_equal
  @service_feature_equal
end

#service_feature_inObject

Returns the value of attribute service_feature_in.



1506
1507
1508
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1506

def service_feature_in
  @service_feature_in
end

#service_type_equalObject

Returns the value of attribute service_type_equal.



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

def service_type_equal
  @service_type_equal
end

#service_type_inObject

Returns the value of attribute service_type_in.



1504
1505
1506
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1504

def service_type_in
  @service_type_in
end

#status_equalObject

Returns the value of attribute status_equal.



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

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



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

def status_in
  @status_in
end

#turn_around_time_equalObject

Returns the value of attribute turn_around_time_equal.



1507
1508
1509
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1507

def turn_around_time_equal
  @turn_around_time_equal
end

#turn_around_time_inObject

Returns the value of attribute turn_around_time_in.



1508
1509
1510
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1508

def turn_around_time_in
  @turn_around_time_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



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

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.



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

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

#vendor_partner_id_equalObject

Returns the value of attribute vendor_partner_id_equal.



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

def vendor_partner_id_equal
  @vendor_partner_id_equal
end

#vendor_partner_id_inObject

Returns the value of attribute vendor_partner_id_in.



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

def vendor_partner_id_in
  @vendor_partner_id_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1541

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['idNotIn'] != nil
		self.id_not_in = xml_element.elements['idNotIn'].text
	end
	if xml_element.elements['vendorPartnerIdEqual'] != nil
		self.vendor_partner_id_equal = xml_element.elements['vendorPartnerIdEqual'].text
	end
	if xml_element.elements['vendorPartnerIdIn'] != nil
		self.vendor_partner_id_in = xml_element.elements['vendorPartnerIdIn'].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
	if xml_element.elements['serviceTypeEqual'] != nil
		self.service_type_equal = xml_element.elements['serviceTypeEqual'].text
	end
	if xml_element.elements['serviceTypeIn'] != nil
		self.service_type_in = xml_element.elements['serviceTypeIn'].text
	end
	if xml_element.elements['serviceFeatureEqual'] != nil
		self.service_feature_equal = xml_element.elements['serviceFeatureEqual'].text
	end
	if xml_element.elements['serviceFeatureIn'] != nil
		self.service_feature_in = xml_element.elements['serviceFeatureIn'].text
	end
	if xml_element.elements['turnAroundTimeEqual'] != nil
		self.turn_around_time_equal = xml_element.elements['turnAroundTimeEqual'].text
	end
	if xml_element.elements['turnAroundTimeIn'] != nil
		self.turn_around_time_in = xml_element.elements['turnAroundTimeIn'].text
	end
end