andrew_holbrook
8 years agoNew Contributor III
Multiple Accounts + getAccountVariableValue
Hi,
This may be a dumb java question, I’m trying to call “getAccountVariableValue” from my snap code, but can’t do it unless I put my actual class in parentheses around the call.
So for example, instead of this:
snapAccount.getAccountVariableValue();
I have to use:
((myFooAccount) snapAccount).getAccountVariableValue();
Is there a way to not have to do this? Perhaps a different way of defining “Account snapAccount”?