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



3659
3660
3661
# File 'lib/kaltura_types.rb', line 3659

def key
  @key
end

#limit_ip_addressObject

Returns the value of attribute limit_ip_address.



3660
3661
3662
# File 'lib/kaltura_types.rb', line 3660

def limit_ip_address
  @limit_ip_address
end

#windowObject

Window



3657
3658
3659
# File 'lib/kaltura_types.rb', line 3657

def window
  @window
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
# File 'lib/kaltura_types.rb', line 3669

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