Class: Kaltura::KalturaUploadedFileTokenResource
- Inherits:
-
KalturaGenericDataCenterContentResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- KalturaDataCenterContentResource
- KalturaGenericDataCenterContentResource
- Kaltura::KalturaUploadedFileTokenResource
- 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
-
#token ⇒ Object
Token that returned from upload.upload action or uploadToken.add action.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#token ⇒ Object
Token that returned from upload.upload action or uploadToken.add action.
20221 20222 20223 |
# File 'lib/kaltura_types.rb', line 20221 def token @token end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
20224 20225 20226 20227 20228 20229 |
# File 'lib/kaltura_types.rb', line 20224 def from_xml(xml_element) super if xml_element.elements['token'] != nil self.token = xml_element.elements['token'].text end end |