Class: Kaltura::KalturaKontikiStorageDeleteJobData
- Inherits:
-
KalturaStorageDeleteJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaStorageJobData
- KalturaStorageDeleteJobData
- Kaltura::KalturaKontikiStorageDeleteJobData
- Defined in:
- lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb
Instance Attribute Summary collapse
-
#content_moid ⇒ Object
Unique Kontiki MOID for the content uploaded to Kontiki.
-
#service_token ⇒ Object
Returns the value of attribute service_token.
Attributes inherited from KalturaStorageJobData
#dest_file_sync_stored_path, #ftp_passive_mode, #server_pass_phrase, #server_password, #server_private_key, #server_public_key, #server_url, #server_username, #src_file_encryption_key, #src_file_sync_id, #src_file_sync_local_path
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#content_moid ⇒ Object
Unique Kontiki MOID for the content uploaded to Kontiki
54 55 56 |
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 54 def content_moid @content_moid end |
#service_token ⇒ Object
Returns the value of attribute service_token.
55 56 57 |
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 55 def service_token @service_token end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
58 59 60 61 62 63 64 65 66 |
# File 'lib/kaltura_plugins/kaltura_kontiki_client_plugin.rb', line 58 def from_xml(xml_element) super if xml_element.elements['contentMoid'] != nil self.content_moid = xml_element.elements['contentMoid'].text end if xml_element.elements['serviceToken'] != nil self.service_token = xml_element.elements['serviceToken'].text end end |