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_type_equal ⇒ Object
Returns the value of attribute server_type_equal.
-
#server_type_in ⇒ Object
Returns the value of attribute server_type_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.
12838 12839 12840 |
# File 'lib/kaltura_types.rb', line 12838 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.
12837 12838 12839 |
# File 'lib/kaltura_types.rb', line 12837 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.
12834 12835 12836 |
# File 'lib/kaltura_types.rb', line 12834 def entry_id_equal @entry_id_equal end |
#entry_id_in ⇒ Object
Returns the value of attribute entry_id_in.
12835 12836 12837 |
# File 'lib/kaltura_types.rb', line 12835 def entry_id_in @entry_id_in end |
#server_node_id_equal ⇒ Object
Returns the value of attribute server_node_id_equal.
12836 12837 12838 |
# File 'lib/kaltura_types.rb', line 12836 def server_node_id_equal @server_node_id_equal end |
#server_type_equal ⇒ Object
Returns the value of attribute server_type_equal.
12843 12844 12845 |
# File 'lib/kaltura_types.rb', line 12843 def server_type_equal @server_type_equal end |
#server_type_in ⇒ Object
Returns the value of attribute server_type_in.
12844 12845 12846 |
# File 'lib/kaltura_types.rb', line 12844 def server_type_in @server_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
12841 12842 12843 |
# File 'lib/kaltura_types.rb', line 12841 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
12842 12843 12844 |
# File 'lib/kaltura_types.rb', line 12842 def status_in @status_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
12839 12840 12841 |
# File 'lib/kaltura_types.rb', line 12839 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.
12840 12841 12842 |
# File 'lib/kaltura_types.rb', line 12840 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 |
# File 'lib/kaltura_types.rb', line 12865 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['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 end |