Class: Kaltura::KalturaUploadTokenBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaUploadTokenBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#file_name_equal ⇒ Object
Returns the value of attribute file_name_equal.
-
#file_size_equal ⇒ Object
Returns the value of attribute file_size_equal.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#user_id_equal ⇒ Object
Returns the value of attribute user_id_equal.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#file_name_equal ⇒ Object
Returns the value of attribute file_name_equal.
10261 10262 10263 |
# File 'lib/kaltura_types.rb', line 10261 def file_name_equal @file_name_equal end |
#file_size_equal ⇒ Object
Returns the value of attribute file_size_equal.
10262 10263 10264 |
# File 'lib/kaltura_types.rb', line 10262 def file_size_equal @file_size_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
10256 10257 10258 |
# File 'lib/kaltura_types.rb', line 10256 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
10257 10258 10259 |
# File 'lib/kaltura_types.rb', line 10257 def id_in @id_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
10259 10260 10261 |
# File 'lib/kaltura_types.rb', line 10259 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
10260 10261 10262 |
# File 'lib/kaltura_types.rb', line 10260 def status_in @status_in end |
#user_id_equal ⇒ Object
Returns the value of attribute user_id_equal.
10258 10259 10260 |
# File 'lib/kaltura_types.rb', line 10258 def user_id_equal @user_id_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 |
# File 'lib/kaltura_types.rb', line 10271 def from_xml(xml_element) super self.id_equal = xml_element.elements['idEqual'].text self.id_in = xml_element.elements['idIn'].text self.user_id_equal = xml_element.elements['userIdEqual'].text self.status_equal = xml_element.elements['statusEqual'].text self.status_in = xml_element.elements['statusIn'].text self.file_name_equal = xml_element.elements['fileNameEqual'].text self.file_size_equal = xml_element.elements['fileSizeEqual'].text end |