public RecurlyPlan()
 {
     PlanIntervalLength = 1;
     UnitAmountInCents = new RecurlyInCentsMapping(UnitAmountInCentsElement);
     SetupFeeInCents = new RecurlyInCentsMapping(SetupFeeInCentsElement, true);
     PlanIntervalUnit = IntervalUnit.Months;
     TrialIntervalUnit = IntervalUnit.Months;
 }
 private RecurlyCoupon()
 {
     PlanCodes = new List<string>();
     DiscountInCents = new RecurlyInCentsMapping(DiscountInCentsElement);
 }
 public RecurlyPlanAddon()
 {
     DefaultQuantity = 1;
     UnitAmountInCents = new RecurlyInCentsMapping(UnitAmountInCentsElement);
 }