Related to issue #51.
I think current recurring payment won't charge immediately (for the first month) upon complete. And I found add a "activation" param to make it happen (am I wrong?). Since it's quite normal to charge immediately for recurring payments, maybe can add this option in the wiki docs?
Paypal::Payment::Recurring.new(
start_date: SET_YOUR_OWN,
description: SET_YOUR_OWN,
activation: {
initial_amount: SET_YOUR_OWN
},
billing: {
period: :SET_YOUR_OWN,
frequency: SET_YOUR_OWN,
amount: SET_YOUR_OWN
}
)
Related to issue #51.
I think current recurring payment won't charge immediately (for the first month) upon complete. And I found add a "activation" param to make it happen (am I wrong?). Since it's quite normal to charge immediately for recurring payments, maybe can add this option in the wiki docs?