Module: GrowsurfRuby::Models::Campaign::ParticipantUpdateParams::ReferralStatus
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/growsurf_ruby/models/campaign/participant_update_params.rb
Constant Summary collapse
- CREDIT_PENDING =
:CREDIT_PENDING- CREDIT_AWARDED =
:CREDIT_AWARDED- CREDIT_EXPIRED =
:CREDIT_EXPIRED
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/growsurf_ruby/models/campaign/participant_update_params.rb', line 94
|
Instance Method Details
#initialize(id:, participant_id_or_email:, email: nil, first_name: nil, last_name: nil, metadata: nil, referral_status: nil, referred_by: nil, unsubscribed: nil, vanity_keys: nil, request_options: {}) ⇒ Object
87 88 89 90 91 92 93 94 95 96 |
# File 'lib/growsurf_ruby/models/campaign/participant_update_params.rb', line 87 module ReferralStatus extend GrowsurfRuby::Internal::Type::Enum CREDIT_PENDING = :CREDIT_PENDING CREDIT_AWARDED = :CREDIT_AWARDED CREDIT_EXPIRED = :CREDIT_EXPIRED # @!method self.values # @return [Array<Symbol>] end |