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.



15046
15047
15048
# File 'lib/kaltura_types.rb', line 15046

def aifp
  @aifp
end

#profileObject

profile



15043
15044
15045
# File 'lib/kaltura_types.rb', line 15043

def profile
  @profile
end

#typeObject

Type



15045
15046
15047
# File 'lib/kaltura_types.rb', line 15045

def type
  @type
end

#use_prefixObject

Returns the value of attribute use_prefix.



15047
15048
15049
# File 'lib/kaltura_types.rb', line 15047

def use_prefix
  @use_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15053
15054
15055
15056
15057
15058
15059
15060
15061
15062
15063
15064
15065
15066
15067
# File 'lib/kaltura_types.rb', line 15053

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