Class: Kaltura::KalturaUrlTokenizerAkamaiRtmp

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

Instance Attribute Summary collapse

Attributes inherited from KalturaUrlTokenizer

#key, #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.



10345
10346
10347
# File 'lib/kaltura_types.rb', line 10345

def aifp
  @aifp
end

#profileObject

profile



10341
10342
10343
# File 'lib/kaltura_types.rb', line 10341

def profile
  @profile
end

#typeObject

Type



10344
10345
10346
# File 'lib/kaltura_types.rb', line 10344

def type
  @type
end

#use_prefixObject

Returns the value of attribute use_prefix.



10346
10347
10348
# File 'lib/kaltura_types.rb', line 10346

def use_prefix
  @use_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10352
10353
10354
10355
10356
10357
10358
# File 'lib/kaltura_types.rb', line 10352

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