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.



15235
15236
15237
# File 'lib/kaltura_types.rb', line 15235

def aifp
  @aifp
end

#profileObject

profile



15232
15233
15234
# File 'lib/kaltura_types.rb', line 15232

def profile
  @profile
end

#typeObject

Type



15234
15235
15236
# File 'lib/kaltura_types.rb', line 15234

def type
  @type
end

#use_prefixObject

Returns the value of attribute use_prefix.



15236
15237
15238
# File 'lib/kaltura_types.rb', line 15236

def use_prefix
  @use_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15242
15243
15244
15245
15246
15247
15248
15249
15250
15251
15252
15253
15254
15255
15256
# File 'lib/kaltura_types.rb', line 15242

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