Class: Kaltura::KalturaWidgetBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaWidgetBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
-
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
-
#entry_id_equal ⇒ Object
Returns the value of attribute entry_id_equal.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#partner_data_like ⇒ Object
Returns the value of attribute partner_data_like.
-
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
-
#root_widget_id_equal ⇒ Object
Returns the value of attribute root_widget_id_equal.
-
#source_widget_id_equal ⇒ Object
Returns the value of attribute source_widget_id_equal.
-
#ui_conf_id_equal ⇒ Object
Returns the value of attribute ui_conf_id_equal.
-
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
-
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
10622 10623 10624 |
# File 'lib/kaltura_types.rb', line 10622 def created_at_greater_than_or_equal @created_at_greater_than_or_equal end |
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
10623 10624 10625 |
# File 'lib/kaltura_types.rb', line 10623 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#entry_id_equal ⇒ Object
Returns the value of attribute entry_id_equal.
10620 10621 10622 |
# File 'lib/kaltura_types.rb', line 10620 def entry_id_equal @entry_id_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
10615 10616 10617 |
# File 'lib/kaltura_types.rb', line 10615 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
10616 10617 10618 |
# File 'lib/kaltura_types.rb', line 10616 def id_in @id_in end |
#partner_data_like ⇒ Object
Returns the value of attribute partner_data_like.
10626 10627 10628 |
# File 'lib/kaltura_types.rb', line 10626 def partner_data_like @partner_data_like end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
10619 10620 10621 |
# File 'lib/kaltura_types.rb', line 10619 def partner_id_equal @partner_id_equal end |
#root_widget_id_equal ⇒ Object
Returns the value of attribute root_widget_id_equal.
10618 10619 10620 |
# File 'lib/kaltura_types.rb', line 10618 def @root_widget_id_equal end |
#source_widget_id_equal ⇒ Object
Returns the value of attribute source_widget_id_equal.
10617 10618 10619 |
# File 'lib/kaltura_types.rb', line 10617 def @source_widget_id_equal end |
#ui_conf_id_equal ⇒ Object
Returns the value of attribute ui_conf_id_equal.
10621 10622 10623 |
# File 'lib/kaltura_types.rb', line 10621 def ui_conf_id_equal @ui_conf_id_equal end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
10624 10625 10626 |
# File 'lib/kaltura_types.rb', line 10624 def updated_at_greater_than_or_equal @updated_at_greater_than_or_equal end |
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
10625 10626 10627 |
# File 'lib/kaltura_types.rb', line 10625 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 |
# File 'lib/kaltura_types.rb', line 10647 def from_xml(xml_element) super self.id_equal = xml_element.elements['idEqual'].text self.id_in = xml_element.elements['idIn'].text self. = xml_element.elements['sourceWidgetIdEqual'].text self. = xml_element.elements['rootWidgetIdEqual'].text self.partner_id_equal = xml_element.elements['partnerIdEqual'].text self.entry_id_equal = xml_element.elements['entryIdEqual'].text self.ui_conf_id_equal = xml_element.elements['uiConfIdEqual'].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_data_like = xml_element.elements['partnerDataLike'].text end |