Hello,
I apologize for the potentially stupid question, but how do I set up annual payments with ARB? All of the documentation I can find only references monthly payments. Also when I am setting up the following
paymentScheduleTypeInterval interval = new paymentScheduleTypeInterval { length = (short)model.SubscriptionLength, unit = ARBSubscriptionUnitEnum.months };
The only options available in the ARBSubscriptionUnitEnum are Days and Months, and our users are selecting the number of years they would like to purchase for their subscription.
Appreciate the help! Thanks!
Solved! Go to Solution.
โ09-05-2018 06:56 AM
For yearly subscriptions you have two options:
ARBSubscriptionUnitEnum = months
length = 12
or
ARBSubscriptionUnitEnum = days
length = 365
and then
totalOccurrences = number of years
โ09-06-2018 04:48 PM
For yearly subscriptions you have two options:
ARBSubscriptionUnitEnum = months
length = 12
or
ARBSubscriptionUnitEnum = days
length = 365
and then
totalOccurrences = number of years
โ09-06-2018 04:48 PM
Thank you mmcguire
โ09-07-2018 04:55 AM