Class: Kaltura::KalturaScheduleEventResourceBaseFilter
- Inherits:
-
KalturaRelatedFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- Kaltura::KalturaScheduleEventResourceBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_schedule_client_plugin.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.
-
#event_id_equal ⇒ Object
Returns the value of attribute event_id_equal.
-
#event_id_in ⇒ Object
Returns the value of attribute event_id_in.
-
#resource_id_equal ⇒ Object
Returns the value of attribute resource_id_equal.
-
#resource_id_in ⇒ Object
Returns the value of attribute resource_id_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.
1017 1018 1019 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1017 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.
1018 1019 1020 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1018 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#event_id_equal ⇒ Object
Returns the value of attribute event_id_equal.
1013 1014 1015 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1013 def event_id_equal @event_id_equal end |
#event_id_in ⇒ Object
Returns the value of attribute event_id_in.
1014 1015 1016 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1014 def event_id_in @event_id_in end |
#resource_id_equal ⇒ Object
Returns the value of attribute resource_id_equal.
1015 1016 1017 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1015 def resource_id_equal @resource_id_equal end |
#resource_id_in ⇒ Object
Returns the value of attribute resource_id_in.
1016 1017 1018 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1016 def resource_id_in @resource_id_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
1019 1020 1021 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1019 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.
1020 1021 1022 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1020 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1041 def from_xml(xml_element) super if xml_element.elements['eventIdEqual'] != nil self.event_id_equal = xml_element.elements['eventIdEqual'].text end if xml_element.elements['eventIdIn'] != nil self.event_id_in = xml_element.elements['eventIdIn'].text end if xml_element.elements['resourceIdEqual'] != nil self.resource_id_equal = xml_element.elements['resourceIdEqual'].text end if xml_element.elements['resourceIdIn'] != nil self.resource_id_in = xml_element.elements['resourceIdIn'].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 end |