Class: Kaltura::KalturaUploadToken
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaUploadToken
- Defined in:
- lib/kaltura_client.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds).
-
#file_name ⇒ Object
Name of the file for the upload token, can be empty when the upload token is created and will be updated internally after the file is uploaded.
-
#file_size ⇒ Object
File size in bytes, can be empty when the upload token is created and will be updated internally after the file is uploaded.
-
#id ⇒ Object
Upload token unique ID.
-
#partner_id ⇒ Object
Partner ID of the upload token.
-
#status ⇒ Object
Status of the upload token.
-
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds).
-
#uploaded_file_size ⇒ Object
Uploaded file size in bytes, can be used to identify how many bytes were uploaded before resuming.
-
#user_id ⇒ Object
User id for the upload token.
Attributes inherited from KalturaObjectBase
Method Summary
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
5916 5917 5918 |
# File 'lib/kaltura_client.rb', line 5916 def created_at @created_at end |
#file_name ⇒ Object
Name of the file for the upload token, can be empty when the upload token is created and will be updated internally after the file is uploaded
5907 5908 5909 |
# File 'lib/kaltura_client.rb', line 5907 def file_name @file_name end |
#file_size ⇒ Object
File size in bytes, can be empty when the upload token is created and will be updated internally after the file is uploaded
5910 5911 5912 |
# File 'lib/kaltura_client.rb', line 5910 def file_size @file_size end |
#id ⇒ Object
Upload token unique ID
5895 5896 5897 |
# File 'lib/kaltura_client.rb', line 5895 def id @id end |
#partner_id ⇒ Object
Partner ID of the upload token
5898 5899 5900 |
# File 'lib/kaltura_client.rb', line 5898 def partner_id @partner_id end |
#status ⇒ Object
Status of the upload token
5904 5905 5906 |
# File 'lib/kaltura_client.rb', line 5904 def status @status end |
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds)
5919 5920 5921 |
# File 'lib/kaltura_client.rb', line 5919 def updated_at @updated_at end |
#uploaded_file_size ⇒ Object
Uploaded file size in bytes, can be used to identify how many bytes were uploaded before resuming
5913 5914 5915 |
# File 'lib/kaltura_client.rb', line 5913 def uploaded_file_size @uploaded_file_size end |
#user_id ⇒ Object
User id for the upload token
5901 5902 5903 |
# File 'lib/kaltura_client.rb', line 5901 def user_id @user_id end |