Class: Kaltura::KalturaEntryServerNodeBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaEntryServerNodeBaseFilter
- 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.
-
#entry_id_in ⇒ Object
Returns the value of attribute entry_id_in.
-
#server_node_id_equal ⇒ Object
Returns the value of attribute server_node_id_equal.
-
#server_node_id_in ⇒ Object
Returns the value of attribute server_node_id_in.
-
#server_type_equal ⇒ Object
Returns the value of attribute server_type_equal.
-
#server_type_in ⇒ Object
Returns the value of attribute server_type_in.
-
#server_type_not_in ⇒ Object
Returns the value of attribute server_type_not_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#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.
13063 13064 13065 |
# File 'lib/kaltura_types.rb', line 13063 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.
13062 13063 13064 |
# File 'lib/kaltura_types.rb', line 13062 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.
13058 13059 13060 |
# File 'lib/kaltura_types.rb', line 13058 def entry_id_equal @entry_id_equal end |
#entry_id_in ⇒ Object
Returns the value of attribute entry_id_in.
13059 13060 13061 |
# File 'lib/kaltura_types.rb', line 13059 def entry_id_in @entry_id_in end |
#server_node_id_equal ⇒ Object
Returns the value of attribute server_node_id_equal.
13060 13061 13062 |
# File 'lib/kaltura_types.rb', line 13060 def server_node_id_equal @server_node_id_equal end |
#server_node_id_in ⇒ Object
Returns the value of attribute server_node_id_in.
13061 13062 13063 |
# File 'lib/kaltura_types.rb', line 13061 def server_node_id_in @server_node_id_in end |
#server_type_equal ⇒ Object
Returns the value of attribute server_type_equal.
13068 13069 13070 |
# File 'lib/kaltura_types.rb', line 13068 def server_type_equal @server_type_equal end |
#server_type_in ⇒ Object
Returns the value of attribute server_type_in.
13069 13070 13071 |
# File 'lib/kaltura_types.rb', line 13069 def server_type_in @server_type_in end |
#server_type_not_in ⇒ Object
Returns the value of attribute server_type_not_in.
13070 13071 13072 |
# File 'lib/kaltura_types.rb', line 13070 def server_type_not_in @server_type_not_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
13066 13067 13068 |
# File 'lib/kaltura_types.rb', line 13066 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
13067 13068 13069 |
# File 'lib/kaltura_types.rb', line 13067 def status_in @status_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
13064 13065 13066 |
# File 'lib/kaltura_types.rb', line 13064 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.
13065 13066 13067 |
# File 'lib/kaltura_types.rb', line 13065 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 |
# File 'lib/kaltura_types.rb', line 13091 def from_xml(xml_element) super if xml_element.elements['entryIdEqual'] != nil self.entry_id_equal = xml_element.elements['entryIdEqual'].text end if xml_element.elements['entryIdIn'] != nil self.entry_id_in = xml_element.elements['entryIdIn'].text end if xml_element.elements['serverNodeIdEqual'] != nil self.server_node_id_equal = xml_element.elements['serverNodeIdEqual'].text end if xml_element.elements['serverNodeIdIn'] != nil self.server_node_id_in = xml_element.elements['serverNodeIdIn'].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['createdAtGreaterThanOrEqual'] != nil self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].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['serverTypeEqual'] != nil self.server_type_equal = xml_element.elements['serverTypeEqual'].text end if xml_element.elements['serverTypeIn'] != nil self.server_type_in = xml_element.elements['serverTypeIn'].text end if xml_element.elements['serverTypeNotIn'] != nil self.server_type_not_in = xml_element.elements['serverTypeNotIn'].text end end |