Module: Revox::Models::CampaignCreateParams::CallRetryConfig::AllowedDay
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/revox/models/campaign_create_params.rb,
sig/revox/models/campaign_create_params.rbs
Constant Summary collapse
- MONDAY =
:monday- TUESDAY =
:tuesday- WEDNESDAY =
:wednesday- THURSDAY =
:thursday- FRIDAY =
:friday- SATURDAY =
:saturday- SUNDAY =
:sunday
Instance Method Summary collapse
-
#initialize(allowed_days:, call_twice_in_a_row:, calling_windows:, max_retry_attempts:, timezone: nil) ⇒ Object
Some parameter documentations has been truncated, see Revox::Models::CampaignCreateParams::CallRetryConfig for more details.
- #self?.values ⇒ ::Array[Revox::Models::CampaignCreateParams::CallRetryConfig::allowed_day]
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(allowed_days:, call_twice_in_a_row:, calling_windows:, max_retry_attempts:, timezone: nil) ⇒ Object
Some parameter documentations has been truncated, see Revox::Models::CampaignCreateParams::CallRetryConfig for more details.
Override retry configuration for calls in this campaign. If not provided, uses the assistant's retry config.
136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/revox/models/campaign_create_params.rb', line 136 module AllowedDay extend Revox::Internal::Type::Enum MONDAY = :monday TUESDAY = :tuesday WEDNESDAY = :wednesday THURSDAY = :thursday FRIDAY = :friday SATURDAY = :saturday SUNDAY = :sunday # @!method self.values # @return [Array<Symbol>] end |
#self?.values ⇒ ::Array[Revox::Models::CampaignCreateParams::CallRetryConfig::allowed_day]
126 |
# File 'sig/revox/models/campaign_create_params.rbs', line 126
def self?.values: -> ::Array[Revox::Models::CampaignCreateParams::CallRetryConfig::allowed_day]
|