Assign UDT Parameters Using Expression

Is there a way to use an expression to assign a UDT parameter.

This would be very helpful for combining UDTs and using the parameters of one to assign to the nested UDT.

You can set default values for your UDT parameters that use references to your parent UDT’s parameters, e.g.

Parent UDT params:

  • param1
  • param2

Child UDT params:

  • param1: {param1} ← this will use the value of the parent param1
  • param2: {param2} ← this will use the value of the parent param2