Class: Kaltura::KalturaDistributionProfileBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaDistributionProfileBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_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.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_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.
1212 1213 1214 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1212 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.
1213 1214 1215 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1213 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
1210 1211 1212 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1210 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
1211 1212 1213 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1211 def id_in @id_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
1216 1217 1218 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1216 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
1217 1218 1219 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1217 def status_in @status_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
1214 1215 1216 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1214 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.
1215 1216 1217 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1215 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1238 def from_xml(xml_element) super if xml_element.elements['idEqual'] != nil self.id_equal = xml_element.elements['idEqual'].text end if xml_element.elements['idIn'] != nil self.id_in = xml_element.elements['idIn'].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 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 end |