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



2189
2190
2191
# File 'lib/kaltura_types.rb', line 2189

def key
  @key
end

#windowObject

Window



2186
2187
2188
# File 'lib/kaltura_types.rb', line 2186

def window
  @window
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2195
2196
2197
2198
2199
# File 'lib/kaltura_types.rb', line 2195

def from_xml(xml_element)
	super
	self.window = xml_element.elements['window'].text
	self.key = xml_element.elements['key'].text
end