Class: Kaltura::KalturaUploadedFileTokenResource

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

Overview

Used to ingest media that uploaded to the system and represented by token that returned from upload.upload action or uploadToken.add action.

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

#tokenObject

Token that returned from upload.upload action or uploadToken.add action.



13094
13095
13096
# File 'lib/kaltura_types.rb', line 13094

def token
  @token
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13097
13098
13099
13100
# File 'lib/kaltura_types.rb', line 13097

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