Class: Kaltura::KalturaVirusScanProfileBaseFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb

Direct Known Subclasses

KalturaVirusScanProfileFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



145
146
147
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 145

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



146
147
148
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 146

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#engine_type_equalObject

Returns the value of attribute engine_type_equal.



155
156
157
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 155

def engine_type_equal
  @engine_type_equal
end

#engine_type_inObject

Returns the value of attribute engine_type_in.



156
157
158
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 156

def engine_type_in
  @engine_type_in
end

#id_equalObject

Returns the value of attribute id_equal.



143
144
145
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 143

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



144
145
146
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 144

def id_in
  @id_in
end

#name_equalObject

Returns the value of attribute name_equal.



151
152
153
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 151

def name_equal
  @name_equal
end

#name_likeObject

Returns the value of attribute name_like.



152
153
154
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 152

def name_like
  @name_like
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



149
150
151
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 149

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



150
151
152
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 150

def partner_id_in
  @partner_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



153
154
155
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 153

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



154
155
156
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 154

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



147
148
149
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 147

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



148
149
150
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 148

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb', line 180

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].text
	self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
	self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	self.partner_id_equal = xml_element.elements['partnerIdEqual'].text
	self.partner_id_in = xml_element.elements['partnerIdIn'].text
	self.name_equal = xml_element.elements['nameEqual'].text
	self.name_like = xml_element.elements['nameLike'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
	self.engine_type_equal = xml_element.elements['engineTypeEqual'].text
	self.engine_type_in = xml_element.elements['engineTypeIn'].text
end