Module: ModerationAPI::Models::AuthorListParams::SortBy
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/moderation_api/models/author_list_params.rb
Constant Summary collapse
- TRUST_LEVEL =
:trustLevel- VIOLATION_COUNT =
:violationCount- REPORT_COUNT =
:reportCount- MEMBER_SINCE =
:memberSince- LAST_ACTIVE =
:lastActive- CONTENT_COUNT =
:contentCount- FLAGGED_CONTENT_RATIO =
:flaggedContentRatio- AVERAGE_SENTIMENT =
:averageSentiment
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
Instance Method Details
#initialize(content_types: nil, last_active_date: nil, member_since_date: nil, page_number: nil, page_size: nil, sort_by: nil, sort_direction: nil, request_options: {}) ⇒ Object
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/moderation_api/models/author_list_params.rb', line 65 module SortBy extend ModerationAPI::Internal::Type::Enum TRUST_LEVEL = :trustLevel VIOLATION_COUNT = :violationCount REPORT_COUNT = :reportCount MEMBER_SINCE = :memberSince LAST_ACTIVE = :lastActive CONTENT_COUNT = :contentCount FLAGGED_CONTENT_RATIO = :flaggedContentRatio AVERAGE_SENTIMENT = :averageSentiment # @!method self.values # @return [Array<Symbol>] end |