Class: AdvancedBilling::PricingScheme

Inherits:
Object
  • Object
show all
Defined in:
lib/advanced_billing/models/pricing_scheme.rb

Overview

The identifier for the pricing scheme. See [Product Components](help.chargify.com/products/product-components.html) for an overview of pricing schemes.

Constant Summary collapse

PRICING_SCHEME =
[
  # TODO: Write general description for STAIRSTEP
  STAIRSTEP = 'stairstep'.freeze,

  # TODO: Write general description for VOLUME
  VOLUME = 'volume'.freeze,

  # TODO: Write general description for PER_UNIT
  PER_UNIT = 'per_unit'.freeze,

  # TODO: Write general description for TIERED
  TIERED = 'tiered'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.validate(value) ⇒ Object



25
26
27
28
29
# File 'lib/advanced_billing/models/pricing_scheme.rb', line 25

def self.validate(value)
  return false if value.nil?

  PRICING_SCHEME.include?(value)
end