Module: Autorender::Models::FolderListParams::Sort

Extended by:
Internal::Type::Enum
Defined in:
lib/autorender/models/folder_list_params.rb

Constant Summary collapse

NAME_ASC =
:name_asc
NAME_DESC =
:name_desc
CREATED_AT_ASC =
:created_at_asc
CREATED_AT_DESC =
:created_at_desc

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/autorender/models/folder_list_params.rb', line 44

Instance Method Details

#initialize(parent_folder_no: nil, search: nil, sort: nil, request_options: {}) ⇒ Object

Parameters:



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/autorender/models/folder_list_params.rb', line 36

module Sort
  extend Autorender::Internal::Type::Enum

  NAME_ASC = :name_asc
  NAME_DESC = :name_desc
  CREATED_AT_ASC = :created_at_asc
  CREATED_AT_DESC = :created_at_desc

  # @!method self.values
  #   @return [Array<Symbol>]
end