Class: Kaltura::KalturaAssetServeOptions

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#downloadObject

Returns the value of attribute download.



813
814
815
# File 'lib/kaltura_types.rb', line 813

def download
  @download
end

#referrerObject

Returns the value of attribute referrer.



814
815
816
# File 'lib/kaltura_types.rb', line 814

def referrer
  @referrer
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



820
821
822
823
824
825
826
827
828
# File 'lib/kaltura_types.rb', line 820

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