Class: Kaltura::KalturaUrlTokenizer

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#keyObject

key



3759
3760
3761
# File 'lib/kaltura_types.rb', line 3759

def key
  @key
end

#limit_ip_addressObject

Returns the value of attribute limit_ip_address.



3760
3761
3762
# File 'lib/kaltura_types.rb', line 3760

def limit_ip_address
  @limit_ip_address
end

#windowObject

Window



3757
3758
3759
# File 'lib/kaltura_types.rb', line 3757

def window
  @window
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
# File 'lib/kaltura_types.rb', line 3769

def from_xml(xml_element)
  super
  if xml_element.elements['window'] != nil
    self.window = xml_element.elements['window'].text
  end
  if xml_element.elements['key'] != nil
    self.key = xml_element.elements['key'].text
  end
  if xml_element.elements['limitIpAddress'] != nil
    self.limit_ip_address = xml_element.elements['limitIpAddress'].text
  end
end