Class: AdvancedBilling::RecurringScheme
- Inherits:
-
Object
- Object
- AdvancedBilling::RecurringScheme
- Defined in:
- lib/advanced_billing/models/recurring_scheme.rb
Overview
Recurring Scheme.
Constant Summary collapse
- RECURRING_SCHEME =
[ # TODO: Write general description for DO_NOT_RECUR DO_NOT_RECUR = 'do_not_recur'.freeze, # TODO: Write general description for RECUR_INDEFINITELY RECUR_INDEFINITELY = 'recur_indefinitely'.freeze, # TODO: Write general description for RECUR_WITH_DURATION RECUR_WITH_DURATION = 'recur_with_duration'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/advanced_billing/models/recurring_scheme.rb', line 20 def self.validate(value) return false if value.nil? RECURRING_SCHEME.include?(value) end |