You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assign the saved RecurringPricePlan to new SubscriptionPlan
save SubscriptionPlan
Find SubscriptionPlan by id
invoke subscriptionPlan.getDurationInMonths()
getting following exception
groovy.lang.MissingPropertyException: No such property: durationInMonths for class: RecurringPricePlan
Possible solutions: durationInMonths
Can you please let me know why i am seeing this error?
The text was updated successfully, but these errors were encountered:
I have the following domain classes in my test app
class PricePlan {
}
class RecurringPricePlan extends PricePlan {
}
class SubscriptionPlan {
}
Steps to reproduce
groovy.lang.MissingPropertyException: No such property: durationInMonths for class: RecurringPricePlan
Possible solutions: durationInMonths
Can you please let me know why i am seeing this error?
The text was updated successfully, but these errors were encountered: