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



3820
3821
3822
# File 'lib/kaltura_types.rb', line 3820

def key
  @key
end

#limit_ip_addressObject

Returns the value of attribute limit_ip_address.



3821
3822
3823
# File 'lib/kaltura_types.rb', line 3821

def limit_ip_address
  @limit_ip_address
end

#windowObject

Window



3818
3819
3820
# File 'lib/kaltura_types.rb', line 3818

def window
  @window
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
# File 'lib/kaltura_types.rb', line 3830

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