Class: Kaltura::KalturaDeliveryProfileBaseFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaDeliveryProfileFilter

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.



8272
8273
8274
# File 'lib/kaltura_types.rb', line 8272

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.



8273
8274
8275
# File 'lib/kaltura_types.rb', line 8273

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



8266
8267
8268
# File 'lib/kaltura_types.rb', line 8266

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



8267
8268
8269
# File 'lib/kaltura_types.rb', line 8267

def id_in
  @id_in
end

#partner_id_equalObject

Returns the value of attribute partner_id_equal.



8268
8269
8270
# File 'lib/kaltura_types.rb', line 8268

def partner_id_equal
  @partner_id_equal
end

#partner_id_inObject

Returns the value of attribute partner_id_in.



8269
8270
8271
# File 'lib/kaltura_types.rb', line 8269

def partner_id_in
  @partner_id_in
end

#status_equalObject

Returns the value of attribute status_equal.



8277
8278
8279
# File 'lib/kaltura_types.rb', line 8277

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



8278
8279
8280
# File 'lib/kaltura_types.rb', line 8278

def status_in
  @status_in
end

#streamer_type_equalObject

Returns the value of attribute streamer_type_equal.



8276
8277
8278
# File 'lib/kaltura_types.rb', line 8276

def streamer_type_equal
  @streamer_type_equal
end

#system_name_equalObject

Returns the value of attribute system_name_equal.



8270
8271
8272
# File 'lib/kaltura_types.rb', line 8270

def system_name_equal
  @system_name_equal
end

#system_name_inObject

Returns the value of attribute system_name_in.



8271
8272
8273
# File 'lib/kaltura_types.rb', line 8271

def system_name_in
  @system_name_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



8274
8275
8276
# File 'lib/kaltura_types.rb', line 8274

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.



8275
8276
8277
# File 'lib/kaltura_types.rb', line 8275

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
# File 'lib/kaltura_types.rb', line 8302

def from_xml(xml_element)
	super
	self.id_equal = xml_element.elements['idEqual'].text
	self.id_in = xml_element.elements['idIn'].text
	self.partner_id_equal = xml_element.elements['partnerIdEqual'].text
	self.partner_id_in = xml_element.elements['partnerIdIn'].text
	self.system_name_equal = xml_element.elements['systemNameEqual'].text
	self.system_name_in = xml_element.elements['systemNameIn'].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.streamer_type_equal = xml_element.elements['streamerTypeEqual'].text
	self.status_equal = xml_element.elements['statusEqual'].text
	self.status_in = xml_element.elements['statusIn'].text
end