Sha256: 3d7535f6615d71e02041e22da62374aca89acebf4d0575937ed2c6c444b2d728
Contents?: true
Size: 1.36 KB
Versions: 10
Compression:
Stored size: 1.36 KB
Contents
module Kaltura module Constants ## # The constants module will soon be depreciated into an Enumeration module to # be more in line with the C# API client's namespacing. # # @see Kaltura::Filter::DocumentEntryFilter # @see Kaltura::DocumentEntry ## module Document ## # The constants module will soon be depreciated into an Enumeration module to # be more in line with the C# API client's namespacing. # # @see Kaltura::Filter::DocumentFilter ## class OrderBy NAME_ASC = "+name" #order by name ascending. NAME_DESC = "-name" #order by name descending. MODERATION_COUNT_ASC = "+moderationCount" #order by moderation count ascending. MODERATION_COUNT_DESC = "-moderationCount" #order by moderation count descending. CREATED_AT_ASC = "+createdAt" #order by created_at ascending. CREATED_AT_DESC = "-createdAt" #ordery by created_at descending. RANK_ASC = "+rank" #order by rank ascending. RANK_DESC = "-rank" #order by rank descending. end ## # The constants module will soon be depreciated into an Enumeration module to # be more in line with the C# API client's namespacing. # # @see Kaltura::DocumentEntry ## class Type DOCUMENT = 11 #Document. SWF = 12 #Executable Flash file. end end end end
Version data entries
10 entries across 10 versions & 2 rubygems