# =================================================================================================== # _ __ _ _ # | |/ /__ _| | |_ _ _ _ _ __ _ # | ' . # # @ignore # =================================================================================================== require 'kaltura_client.rb' module Kaltura class KalturaKontikiStorageProfileOrderBy CREATED_AT_ASC = "+createdAt" UPDATED_AT_ASC = "+updatedAt" CREATED_AT_DESC = "-createdAt" UPDATED_AT_DESC = "-updatedAt" end class KalturaKontikiStorageProfile < KalturaStorageProfile attr_accessor :service_token end class KalturaKontikiStorageDeleteJobData < KalturaStorageDeleteJobData # Unique Kontiki MOID for the content uploaded to Kontiki # attr_accessor :content_moid attr_accessor :service_token end class KalturaKontikiStorageExportJobData < KalturaStorageExportJobData # Holds the id of the exported asset # attr_accessor :flavor_asset_id # Unique Kontiki MOID for the content uploaded to Kontiki # attr_accessor :content_moid attr_accessor :service_token end class KalturaKontikiStorageProfileBaseFilter < KalturaStorageProfileFilter end class KalturaKontikiStorageProfileFilter < KalturaKontikiStorageProfileBaseFilter end end