Class: Kaltura::KalturaGenericDistributionProviderActionBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaGenericDistributionProviderActionBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#action_equal ⇒ Object
Returns the value of attribute action_equal.
-
#action_in ⇒ Object
Returns the value of attribute action_in.
-
#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.
-
#generic_distribution_provider_id_equal ⇒ Object
Returns the value of attribute generic_distribution_provider_id_equal.
-
#generic_distribution_provider_id_in ⇒ Object
Returns the value of attribute generic_distribution_provider_id_in.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute 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
#action_equal ⇒ Object
Returns the value of attribute action_equal.
1183 1184 1185 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1183 def action_equal @action_equal end |
#action_in ⇒ Object
Returns the value of attribute action_in.
1184 1185 1186 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1184 def action_in @action_in end |
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
1177 1178 1179 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1177 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.
1178 1179 1180 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1178 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#generic_distribution_provider_id_equal ⇒ Object
Returns the value of attribute generic_distribution_provider_id_equal.
1181 1182 1183 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1181 def generic_distribution_provider_id_equal @generic_distribution_provider_id_equal end |
#generic_distribution_provider_id_in ⇒ Object
Returns the value of attribute generic_distribution_provider_id_in.
1182 1183 1184 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1182 def generic_distribution_provider_id_in @generic_distribution_provider_id_in end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
1175 1176 1177 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1175 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
1176 1177 1178 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1176 def id_in @id_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
1179 1180 1181 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1179 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.
1180 1181 1182 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1180 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1208 def from_xml(xml_element) super self.id_equal = xml_element.elements['idEqual'].text self.id_in = xml_element.elements['idIn'].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.generic_distribution_provider_id_equal = xml_element.elements['genericDistributionProviderIdEqual'].text self.generic_distribution_provider_id_in = xml_element.elements['genericDistributionProviderIdIn'].text self.action_equal = xml_element.elements['actionEqual'].text self.action_in = xml_element.elements['actionIn'].text end |