Class: Kaltura::KalturaUrlTokenizerAkamaiRtmp

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

Instance Attribute Summary collapse

Attributes inherited from KalturaUrlTokenizer

#key, #limit_ip_address, #window

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#aifpObject

Returns the value of attribute aifp.



15850
15851
15852
# File 'lib/kaltura_types.rb', line 15850

def aifp
  @aifp
end

#profileObject

profile



15847
15848
15849
# File 'lib/kaltura_types.rb', line 15847

def profile
  @profile
end

#typeObject

Type



15849
15850
15851
# File 'lib/kaltura_types.rb', line 15849

def type
  @type
end

#use_prefixObject

Returns the value of attribute use_prefix.



15851
15852
15853
# File 'lib/kaltura_types.rb', line 15851

def use_prefix
  @use_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15857
15858
15859
15860
15861
15862
15863
15864
15865
15866
15867
15868
15869
15870
15871
# File 'lib/kaltura_types.rb', line 15857

def from_xml(xml_element)
	super
	if xml_element.elements['profile'] != nil
		self.profile = xml_element.elements['profile'].text
	end
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['aifp'] != nil
		self.aifp = xml_element.elements['aifp'].text
	end
	if xml_element.elements['usePrefix'] != nil
		self.use_prefix = xml_element.elements['usePrefix'].text
	end
end