Class: Kaltura::KalturaUserEntryBaseFilter

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

Direct Known Subclasses

KalturaUserEntryFilter

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.



10515
10516
10517
# File 'lib/kaltura_types.rb', line 10515

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.



10514
10515
10516
# File 'lib/kaltura_types.rb', line 10514

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.



10507
10508
10509
# File 'lib/kaltura_types.rb', line 10507

def entry_id_equal
  @entry_id_equal
end

#entry_id_inObject

Returns the value of attribute entry_id_in.



10508
10509
10510
# File 'lib/kaltura_types.rb', line 10508

def entry_id_in
  @entry_id_in
end

#entry_id_not_inObject

Returns the value of attribute entry_id_not_in.



10509
10510
10511
# File 'lib/kaltura_types.rb', line 10509

def entry_id_not_in
  @entry_id_not_in
end

#id_equalObject

Returns the value of attribute id_equal.



10504
10505
10506
# File 'lib/kaltura_types.rb', line 10504

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



10505
10506
10507
# File 'lib/kaltura_types.rb', line 10505

def id_in
  @id_in
end

#id_not_inObject

Returns the value of attribute id_not_in.



10506
10507
10508
# File 'lib/kaltura_types.rb', line 10506

def id_not_in
  @id_not_in
end

#status_equalObject

Returns the value of attribute status_equal.



10513
10514
10515
# File 'lib/kaltura_types.rb', line 10513

def status_equal
  @status_equal
end

#type_equalObject

Returns the value of attribute type_equal.



10518
10519
10520
# File 'lib/kaltura_types.rb', line 10518

def type_equal
  @type_equal
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



10517
10518
10519
# File 'lib/kaltura_types.rb', line 10517

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.



10516
10517
10518
# File 'lib/kaltura_types.rb', line 10516

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

#user_id_equalObject

Returns the value of attribute user_id_equal.



10510
10511
10512
# File 'lib/kaltura_types.rb', line 10510

def user_id_equal
  @user_id_equal
end

#user_id_inObject

Returns the value of attribute user_id_in.



10511
10512
10513
# File 'lib/kaltura_types.rb', line 10511

def user_id_in
  @user_id_in
end

#user_id_not_inObject

Returns the value of attribute user_id_not_in.



10512
10513
10514
# File 'lib/kaltura_types.rb', line 10512

def user_id_not_in
  @user_id_not_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10536
10537
10538
10539
10540
10541
10542
10543
10544
10545
10546
10547
10548
10549
10550
10551
10552
10553
# File 'lib/kaltura_types.rb', line 10536

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].text
	self.id_not_in = xml_element.elements['idNotIn'].text
	self.entry_id_equal = xml_element.elements['entryIdEqual'].text
	self.entry_id_in = xml_element.elements['entryIdIn'].text
	self.entry_id_not_in = xml_element.elements['entryIdNotIn'].text
	self.user_id_equal = xml_element.elements['userIdEqual'].text
	self.user_id_in = xml_element.elements['userIdIn'].text
	self.user_id_not_in = xml_element.elements['userIdNotIn'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
	self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	self.type_equal = xml_element.elements['typeEqual'].text
end