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.
11403 11404 11405 |
# File 'lib/kaltura_types.rb', line 11403 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.
11404 11405 11406 |
# File 'lib/kaltura_types.rb', line 11404 def bulk_upload_object_type_in @bulk_upload_object_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
11402 11403 11404 |
# File 'lib/kaltura_types.rb', line 11402 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
11401 11402 11403 |
# File 'lib/kaltura_types.rb', line 11401 def status_in @status_in end |
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
11400 11401 11402 |
# File 'lib/kaltura_types.rb', line 11400 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.
11398 11399 11400 |
# File 'lib/kaltura_types.rb', line 11398 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.
11399 11400 11401 |
# File 'lib/kaltura_types.rb', line 11399 def uploaded_on_less_than_or_equal @uploaded_on_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 |
# File 'lib/kaltura_types.rb', line 11419 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 |