class Kaltura::KalturaUploadedFileTokenResource
Used to ingest media that uploaded to the system and represented by token that returned from upload.upload action or uploadToken.add action.
Attributes
token[RW]
Token that returned from upload.upload action or uploadToken.add action.
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaGenericDataCenterContentResource#from_xml
# File lib/kaltura_types.rb, line 19884 def from_xml(xml_element) super if xml_element.elements['token'] != nil self.token = xml_element.elements['token'].text end end