How to assign value to custom variable type

I’ve created SOAP custom activity and you need to pass certain variable type to input but I can’t assign anything to that variable
Untitled
How can I give value to this type of variable?

Hi @Timber

Have you tried to cast it to string by using the following code?
CType(var, String)

Reference:

1 Like