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.
11373 11374 11375 |
# File 'lib/kaltura_types.rb', line 11373 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.
11374 11375 11376 |
# File 'lib/kaltura_types.rb', line 11374 def bulk_upload_object_type_in @bulk_upload_object_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
11372 11373 11374 |
# File 'lib/kaltura_types.rb', line 11372 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
11371 11372 11373 |
# File 'lib/kaltura_types.rb', line 11371 def status_in @status_in end |
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
11370 11371 11372 |
# File 'lib/kaltura_types.rb', line 11370 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.
11368 11369 11370 |
# File 'lib/kaltura_types.rb', line 11368 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.
11369 11370 11371 |
# File 'lib/kaltura_types.rb', line 11369 def uploaded_on_less_than_or_equal @uploaded_on_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 |
# File 'lib/kaltura_types.rb', line 11389 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 |