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.
10703 10704 10705 |
# File 'lib/kaltura_types.rb', line 10703 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.
10704 10705 10706 |
# File 'lib/kaltura_types.rb', line 10704 def bulk_upload_object_type_in @bulk_upload_object_type_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
10702 10703 10704 |
# File 'lib/kaltura_types.rb', line 10702 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
10701 10702 10703 |
# File 'lib/kaltura_types.rb', line 10701 def status_in @status_in end |
#uploaded_on_equal ⇒ Object
Returns the value of attribute uploaded_on_equal.
10700 10701 10702 |
# File 'lib/kaltura_types.rb', line 10700 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.
10698 10699 10700 |
# File 'lib/kaltura_types.rb', line 10698 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.
10699 10700 10701 |
# File 'lib/kaltura_types.rb', line 10699 def uploaded_on_less_than_or_equal @uploaded_on_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 |
# File 'lib/kaltura_types.rb', line 10719 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 |