Module: PostForMe::Models::SocialPostListParams::Platform
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/post_for_me/models/social_post_list_params.rb,
sig/post_for_me/models/social_post_list_params.rbs
Constant Summary collapse
- BLUESKY =
:bluesky- FACEBOOK =
:facebook- INSTAGRAM =
:instagram- LINKEDIN =
:linkedin- PINTEREST =
:pinterest- THREADS =
:threads- TIKTOK =
:tiktok- X =
:x- YOUTUBE =
:youtube
Instance Method Summary collapse
- #initialize(external_id: nil, limit: nil, offset: nil, platform: nil, social_account_id: nil, status: nil, request_options: {}) ⇒ Object
- #self?.values ⇒ ::Array[PostForMe::Models::SocialPostListParams::platform]
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values, 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(external_id: nil, limit: nil, offset: nil, platform: nil, social_account_id: nil, status: nil, request_options: {}) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/post_for_me/models/social_post_list_params.rb', line 62 module Platform extend PostForMe::Internal::Type::Enum BLUESKY = :bluesky FACEBOOK = :facebook INSTAGRAM = :instagram LINKEDIN = :linkedin PINTEREST = :pinterest THREADS = :threads TIKTOK = :tiktok X = :x YOUTUBE = :youtube # @!method self.values # @return [Array<Symbol>] end |
#self?.values ⇒ ::Array[PostForMe::Models::SocialPostListParams::platform]
90 |
# File 'sig/post_for_me/models/social_post_list_params.rbs', line 90
def self?.values: -> ::Array[PostForMe::Models::SocialPostListParams::platform]
|