# =================================================================================================== # _ __ _ _ # | |/ /__ _| | |_ _ _ _ _ __ _ # | ' . # # @ignore # =================================================================================================== require 'kaltura_client.rb' require File.dirname(__FILE__) + '/kaltura_drop_folder_client_plugin.rb' require File.dirname(__FILE__) + '/kaltura_metadata_client_plugin.rb' module Kaltura class KalturaWebexDropFolderFileOrderBy CREATED_AT_ASC = "+createdAt" FILE_NAME_ASC = "+fileName" FILE_SIZE_ASC = "+fileSize" FILE_SIZE_LAST_SET_AT_ASC = "+fileSizeLastSetAt" ID_ASC = "+id" PARSED_FLAVOR_ASC = "+parsedFlavor" PARSED_SLUG_ASC = "+parsedSlug" UPDATED_AT_ASC = "+updatedAt" CREATED_AT_DESC = "-createdAt" FILE_NAME_DESC = "-fileName" FILE_SIZE_DESC = "-fileSize" FILE_SIZE_LAST_SET_AT_DESC = "-fileSizeLastSetAt" ID_DESC = "-id" PARSED_FLAVOR_DESC = "-parsedFlavor" PARSED_SLUG_DESC = "-parsedSlug" UPDATED_AT_DESC = "-updatedAt" end class KalturaWebexDropFolderOrderBy CREATED_AT_ASC = "+createdAt" ID_ASC = "+id" NAME_ASC = "+name" UPDATED_AT_ASC = "+updatedAt" CREATED_AT_DESC = "-createdAt" ID_DESC = "-id" NAME_DESC = "-name" UPDATED_AT_DESC = "-updatedAt" end class KalturaWebexDropFolder < KalturaDropFolder attr_accessor :webex_user_id attr_accessor :webex_password attr_accessor :webex_site_id attr_accessor :webex_partner_id attr_accessor :webex_service_url attr_accessor :webex_host_id_metadata_field_name attr_accessor :categories_metadata_field_name attr_accessor :enforce_entitlement def webex_site_id=(val) @webex_site_id = val.to_i end def enforce_entitlement=(val) @enforce_entitlement = to_b(val) end end class KalturaWebexDropFolderFile < KalturaDropFolderFile attr_accessor :recording_id attr_accessor :webex_host_id attr_accessor :description attr_accessor :conf_id attr_accessor :content_url def recording_id=(val) @recording_id = val.to_i end end class KalturaWebexDropFolderContentProcessorJobData < KalturaDropFolderContentProcessorJobData attr_accessor :description attr_accessor :webex_host_id attr_accessor :drop_folder_id def drop_folder_id=(val) @drop_folder_id = val.to_i end end class KalturaWebexDropFolderBaseFilter < KalturaDropFolderFilter end class KalturaWebexDropFolderFileBaseFilter < KalturaDropFolderFileFilter end class KalturaWebexDropFolderFileFilter < KalturaWebexDropFolderFileBaseFilter end class KalturaWebexDropFolderFilter < KalturaWebexDropFolderBaseFilter end end