Is there a way to get the type of a value in APEX Script? I tried the following python:
my_value:Int=0type=type(my_value)print(type)
and got the following error:
``type = type(my_value)`` The given function Type has no input at index -1).
is there no way to get the type of a value in APEX Script? I'm trying to dynamically add value nodes to my network by iterating over a dictionary and i need to know the types of each value, so i can create the callback string used in addNode, i.e. "Value<Int>".