Sha256: 7c0782e48b90604472a68c69dbc8681db3b1709796e57b3f763993e1df1091d2
Contents?: true
Size: 831 Bytes
Versions: 16
Compression:
Stored size: 831 Bytes
Contents
# This file contains descriptions of all your stripe plans # Example # Stripe::Plans::PRIMO #=> 'primo' # Stripe.plan :primo do |plan| # # # plan name as it will appear on credit card statements # plan.name = 'Acme as a service PRIMO' # # # amount in cents. This is 6.99 # plan.amount = 699 # # # currency to use for the plan (default 'usd') # plan.currency = 'usd' # # # interval must be either 'week', 'month' or 'year' # plan.interval = 'month' # # # only bill once every three months (default 1) # plan.interval_count = 3 # # # number of days before charging customer's card (default 0) # plan.trial_period_days = 30 # end # Once you have your plans defined, you can run # # rake stripe:prepare # # This will export any new plans to stripe.com so that you can # begin using them in your API calls.
Version data entries
16 entries across 16 versions & 2 rubygems