Module: Autorender::Models::FileListParams::Sort
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/autorender/models/file_list_params.rb
Constant Summary collapse
- NAME_ASC =
:name_asc- NAME_DESC =
:name_desc- SIZE_ASC =
:size_asc- SIZE_DESC =
:size_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
.values ⇒ Array<Symbol>
|
|
# File 'lib/autorender/models/file_list_params.rb', line 60
|
Instance Method Details
#initialize(folder_no: nil, limit: nil, page: nil, search: nil, sort: nil, request_options: {}) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/autorender/models/file_list_params.rb', line 50 module Sort extend Autorender::Internal::Type::Enum NAME_ASC = :name_asc NAME_DESC = :name_desc SIZE_ASC = :size_asc SIZE_DESC = :size_desc CREATED_AT_ASC = :created_at_asc CREATED_AT_DESC = :created_at_desc # @!method self.values # @return [Array<Symbol>] end |