Class: Kaltura::KalturaBulkUploadBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaBulkUploadBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#bulk_upload_object_type_equal ⇒ Object
Returns the value of attribute bulk_upload_object_type_equal.
-
#bulk_upload_object_type_in ⇒ Object
Returns the value of attribute bulk_upload_object_type_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
-
#uploaded_on_greater_than_or_equal ⇒ Object
Returns the value of attribute uploaded_on_greater_than_or_equal.
-
#uploaded_on_less_than_or_equal ⇒ Object
Returns the value of attribute uploaded_on_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
#bulk_upload_object_type_equal ⇒ Object
Returns the value of attribute bulk_upload_object_type_equal.
11258 11259 11260 |
# File 'lib/kaltura_types.rb', line 11258 def bulk_upload_object_type_equal @bulk_upload_object_type_equal end |
#bulk_upload_object_type_in ⇒ Object
Returns the value of attribute bulk_upload_object_type_in.
11259 11260 11261 |
# File 'lib/kaltura_types.rb', line 11259 def bulk_upload_object_type_in @bulk_upload_object_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
11257 11258 11259 |
# File 'lib/kaltura_types.rb', line 11257 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
11256 11257 11258 |
# File 'lib/kaltura_types.rb', line 11256 def status_in @status_in end |
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
11255 11256 11257 |
# File 'lib/kaltura_types.rb', line 11255 def uploaded_on_equal @uploaded_on_equal end |
#uploaded_on_greater_than_or_equal ⇒ Object
Returns the value of attribute uploaded_on_greater_than_or_equal.
11253 11254 11255 |
# File 'lib/kaltura_types.rb', line 11253 def uploaded_on_greater_than_or_equal @uploaded_on_greater_than_or_equal end |
#uploaded_on_less_than_or_equal ⇒ Object
Returns the value of attribute uploaded_on_less_than_or_equal.
11254 11255 11256 |
# File 'lib/kaltura_types.rb', line 11254 def uploaded_on_less_than_or_equal @uploaded_on_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 |
# File 'lib/kaltura_types.rb', line 11274 def from_xml(xml_element) super if xml_element.elements['uploadedOnGreaterThanOrEqual'] != nil self.uploaded_on_greater_than_or_equal = xml_element.elements['uploadedOnGreaterThanOrEqual'].text end if xml_element.elements['uploadedOnLessThanOrEqual'] != nil self.uploaded_on_less_than_or_equal = xml_element.elements['uploadedOnLessThanOrEqual'].text end if xml_element.elements['uploadedOnEqual'] != nil self.uploaded_on_equal = xml_element.elements['uploadedOnEqual'].text end if xml_element.elements['statusIn'] != nil self.status_in = xml_element.elements['statusIn'].text end if xml_element.elements['statusEqual'] != nil self.status_equal = xml_element.elements['statusEqual'].text end if xml_element.elements['bulkUploadObjectTypeEqual'] != nil self.bulk_upload_object_type_equal = xml_element.elements['bulkUploadObjectTypeEqual'].text end if xml_element.elements['bulkUploadObjectTypeIn'] != nil self.bulk_upload_object_type_in = xml_element.elements['bulkUploadObjectTypeIn'].text end end |