Class: Kaltura::KalturaAttachmentAssetBaseFilter
- Inherits:
-
KalturaAssetFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaAssetBaseFilter
- KalturaAssetFilter
- Kaltura::KalturaAttachmentAssetBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_attachment_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#format_equal ⇒ Object
Returns the value of attribute format_equal.
-
#format_in ⇒ Object
Returns the value of attribute format_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#status_not_in ⇒ Object
Returns the value of attribute status_not_in.
Attributes inherited from KalturaAssetBaseFilter
#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #deleted_at_greater_than_or_equal, #deleted_at_less_than_or_equal, #entry_id_equal, #entry_id_in, #id_equal, #id_in, #partner_id_equal, #partner_id_in, #size_greater_than_or_equal, #size_less_than_or_equal, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #updated_at_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
#format_equal ⇒ Object
Returns the value of attribute format_equal.
98 99 100 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 98 def format_equal @format_equal end |
#format_in ⇒ Object
Returns the value of attribute format_in.
99 100 101 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 99 def format_in @format_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
100 101 102 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 100 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
101 102 103 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 101 def status_in @status_in end |
#status_not_in ⇒ Object
Returns the value of attribute status_not_in.
102 103 104 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 102 def status_not_in @status_not_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
108 109 110 111 112 113 114 115 |
# File 'lib/kaltura_plugins/kaltura_attachment_client_plugin.rb', line 108 def from_xml(xml_element) super self.format_equal = xml_element.elements['formatEqual'].text self.format_in = xml_element.elements['formatIn'].text self.status_equal = xml_element.elements['statusEqual'].text self.status_in = xml_element.elements['statusIn'].text self.status_not_in = xml_element.elements['statusNotIn'].text end |