Class: Kaltura::KalturaUrlTokenizerAkamaiRtmp
- Inherits:
-
KalturaUrlTokenizer
- Object
- KalturaObjectBase
- KalturaUrlTokenizer
- Kaltura::KalturaUrlTokenizerAkamaiRtmp
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#aifp ⇒ Object
Returns the value of attribute aifp.
-
#profile ⇒ Object
profile.
-
#type ⇒ Object
Type.
-
#use_prefix ⇒ Object
Returns the value of attribute use_prefix.
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
Instance Attribute Details
#aifp ⇒ Object
Returns the value of attribute aifp.
15766 15767 15768 |
# File 'lib/kaltura_types.rb', line 15766 def aifp @aifp end |
#profile ⇒ Object
profile
15763 15764 15765 |
# File 'lib/kaltura_types.rb', line 15763 def profile @profile end |
#type ⇒ Object
Type
15765 15766 15767 |
# File 'lib/kaltura_types.rb', line 15765 def type @type end |
#use_prefix ⇒ Object
Returns the value of attribute use_prefix.
15767 15768 15769 |
# File 'lib/kaltura_types.rb', line 15767 def use_prefix @use_prefix end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 |
# File 'lib/kaltura_types.rb', line 15773 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 |