Hello,
I have this method.
function requestQuote(policyPeriod : PolicyPeriod, nextStep : String) { requestQuote(policyPeriod, nextStep, ValidationLevel.TC_QUOTABLE, RatingStyle.TC_DEFAULT)}
I am trying to call a method on the policyPeriod parame...
Thanks, @Mario.Morelli. I was able to see the methods that the PolicyPeriod had available, but I am not sure how to tie this all together.
I have this method that I have instrumented. It takes a PolicyPeriod which internally is a delegate to th...
Thanks Mario. I was able to get the entity.PolicyPeriod methods. I tried the getVersionString() on both param 0 and 1 with no success. It does appear it is param 1 even though it is the first param of the method in the code. I just put getVersionSt...
Thanks Mario, I found it. I am not sure why the first parameter show up as Param 1, but the PolicyPeriod is the first parameter in the method and the one I am trying to access. It appears the issue is that the parameter is not the actual object, b...