(index ("api-endpoint" 0) ("api-version" 183) ("default-username" 332) ("charge" 469) ("add-customer" 811))
(def (sig (parameter "(api-endpoint [string])" (id api-endpoint))) (p "URL under which the api resides. Defaults to \"https://api.stripe.com/\". You shouldn't need to change this."))
(def (sig (parameter "(api-version [string])" (id api-version))) (p "URL to the api version of Stripe that you want to use. Defaults to \"/v1/\"."))
(def (sig (parameter "(default-username [string])" (id default-username))) (p "This is your Stripe private api key. Defaults to \"\"."))
(def (sig (procedure "(charge amount #!key (card-token #f) (customer #f) (username (default-username)) (description \"\"))" (id charge))) (p "Charge a users card. As per Stripe's api, either card-token or customer are required. For more details see the Stripe " (link "https://stripe.com/docs/api#create_charge" "charge documentation") "."))
(def (sig (procedure "(add-customer card-token #!key (description #f) (email #f) (plan \"\") (username (default-username)) (description \"\"))" (id add-customer))) (p "Add a customer to Stripe for further use. card-token is a token returned by Stripe's javascript api and is the card that will be associated with the customer's account. For more details see the Stripe " (link "https://stripe.com/docs/api#create_customer" "customer documentation") "."))
