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.



14983
14984
14985
# File 'lib/kaltura_types.rb', line 14983

def aifp
  @aifp
end

#profileObject

profile



14980
14981
14982
# File 'lib/kaltura_types.rb', line 14980

def profile
  @profile
end

#typeObject

Type



14982
14983
14984
# File 'lib/kaltura_types.rb', line 14982

def type
  @type
end

#use_prefixObject

Returns the value of attribute use_prefix.



14984
14985
14986
# File 'lib/kaltura_types.rb', line 14984

def use_prefix
  @use_prefix
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14990
14991
14992
14993
14994
14995
14996
14997
14998
14999
15000
15001
15002
15003
15004
# File 'lib/kaltura_types.rb', line 14990

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