Class: Kaltura::KalturaDeliveryProfileFilter

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryProfileBaseFilter

#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #id_equal, #id_in, #partner_id_equal, #partner_id_in, #status_equal, #status_in, #streamer_type_equal, #system_name_equal, #system_name_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal

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

#is_liveObject

Returns the value of attribute is_live.



16377
16378
16379
# File 'lib/kaltura_types.rb', line 16377

def is_live
  @is_live
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16383
16384
16385
16386
16387
16388
# File 'lib/kaltura_types.rb', line 16383

def from_xml(xml_element)
	super
	if xml_element.elements['isLive'] != nil
		self.is_live = xml_element.elements['isLive'].text
	end
end