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.



16455
16456
16457
# File 'lib/kaltura_types.rb', line 16455

def is_live
  @is_live
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16461
16462
16463
16464
16465
16466
# File 'lib/kaltura_types.rb', line 16461

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