Based on this Action Parameter Type - Interface reference. What will be the right Property Type. I tried String and more but i always get incompatible type.
Hi!
This parameter cannot be directly mapped to a property but you can map a property to a property of the interface reference (see below). In that case the property type of the interface and of the property you are mapping it to need to be of the same type.
Let me explain the problem i am trying to solve. So I have a interface called “Task Interface“
Then i have few objects which extends from this interface. I also have a column “Parent Task“ in the interface.
So at runtime i want to store any task in the parent task to link a task record to any task record in the system.
Not sure if this make sense. But this way at runtime any task can have any task as parent or child.
You cannot store an interface in a property, depending on your setup you may be able to store a foreign key reference to the parent task primary key and link them through this reference.

