cancel
Showing results for 
Search instead for 
Did you mean: 

Setting Up Annual ARB

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! 

 

sponeill
Member
1 ACCEPTED SOLUTION

Accepted Solutions

For yearly subscriptions you have two options:

 

 

ARBSubscriptionUnitEnum = months

length = 12

 

or

 

ARBSubscriptionUnitEnum = days

length = 365

 

and then

totalOccurrences = number of years

View solution in original post

mmcguire
Administrator Administrator
Administrator
2 REPLIES 2

For yearly subscriptions you have two options:

 

 

ARBSubscriptionUnitEnum = months

length = 12

 

or

 

ARBSubscriptionUnitEnum = days

length = 365

 

and then

totalOccurrences = number of years

mmcguire
Administrator Administrator
Administrator

Thank you mmcguire