Class: Kaltura::KalturaCaptionAssetBaseFilter
- Inherits:
-
KalturaAssetFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaAssetBaseFilter
- KalturaAssetFilter
- Kaltura::KalturaCaptionAssetBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_caption_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#caption_params_id_equal ⇒ Object
Returns the value of attribute caption_params_id_equal.
-
#caption_params_id_in ⇒ Object
Returns the value of attribute caption_params_id_in.
-
#format_equal ⇒ Object
Returns the value of attribute format_equal.
-
#format_in ⇒ Object
Returns the value of attribute format_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#status_not_in ⇒ Object
Returns the value of attribute status_not_in.
Attributes inherited from KalturaAssetFilter
Attributes inherited from KalturaAssetBaseFilter
#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #deleted_at_greater_than_or_equal, #deleted_at_less_than_or_equal, #entry_id_equal, #entry_id_in, #id_equal, #id_in, #partner_id_equal, #partner_id_in, #size_greater_than_or_equal, #size_less_than_or_equal, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #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
#caption_params_id_equal ⇒ Object
Returns the value of attribute caption_params_id_equal.
294 295 296 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 294 def caption_params_id_equal @caption_params_id_equal end |
#caption_params_id_in ⇒ Object
Returns the value of attribute caption_params_id_in.
295 296 297 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 295 def caption_params_id_in @caption_params_id_in end |
#format_equal ⇒ Object
Returns the value of attribute format_equal.
296 297 298 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 296 def format_equal @format_equal end |
#format_in ⇒ Object
Returns the value of attribute format_in.
297 298 299 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 297 def format_in @format_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
298 299 300 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 298 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
299 300 301 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 299 def status_in @status_in end |
#status_not_in ⇒ Object
Returns the value of attribute status_not_in.
300 301 302 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 300 def status_not_in @status_not_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 309 def from_xml(xml_element) super if xml_element.elements['captionParamsIdEqual'] != nil self.caption_params_id_equal = xml_element.elements['captionParamsIdEqual'].text end if xml_element.elements['captionParamsIdIn'] != nil self.caption_params_id_in = xml_element.elements['captionParamsIdIn'].text end if xml_element.elements['formatEqual'] != nil self.format_equal = xml_element.elements['formatEqual'].text end if xml_element.elements['formatIn'] != nil self.format_in = xml_element.elements['formatIn'].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['statusNotIn'] != nil self.status_not_in = xml_element.elements['statusNotIn'].text end end |