Module: Ovh::Api::Models::BillingOrderRetractionReasonEnum
- Defined in:
- lib/ovh-api/models/billing_order_retraction_reason_enum.rb
Constant Summary collapse
- COMPETITOR =
'competitor'- DIFFICULTY =
'difficulty'- EXPENSIVE =
'expensive'- OTHER =
'other'- PERFORMANCE =
'performance'- RELIABILITY =
'reliability'- UNUSED =
'unused'
Class Method Summary collapse
Class Method Details
.all ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/ovh-api/models/billing_order_retraction_reason_enum.rb', line 19 def self.all @all ||= [ COMPETITOR, DIFFICULTY, EXPENSIVE, OTHER, PERFORMANCE, RELIABILITY, UNUSED, ].freeze end |
.valid?(value) ⇒ Boolean
31 32 33 |
# File 'lib/ovh-api/models/billing_order_retraction_reason_enum.rb', line 31 def self.valid?(value) all.include?(value) end |