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.
10727 10728 10729 |
# File 'lib/kaltura_types.rb', line 10727 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.
10728 10729 10730 |
# File 'lib/kaltura_types.rb', line 10728 def bulk_upload_object_type_in @bulk_upload_object_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
10726 10727 10728 |
# File 'lib/kaltura_types.rb', line 10726 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
10725 10726 10727 |
# File 'lib/kaltura_types.rb', line 10725 def status_in @status_in end |
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
10724 10725 10726 |
# File 'lib/kaltura_types.rb', line 10724 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.
10722 10723 10724 |
# File 'lib/kaltura_types.rb', line 10722 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.
10723 10724 10725 |
# File 'lib/kaltura_types.rb', line 10723 def uploaded_on_less_than_or_equal @uploaded_on_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 |
# File 'lib/kaltura_types.rb', line 10743 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 |