I have created a Custom Activity in UiPath that takes in some information with the intention of returning an object that contains the submitted strings as properties.
For example, here is an example of the object I create within the script (Top Left)
Here the script returns the created “car” object (Top Right)
And here is me creating the object using the activity, but the following print line wont allow me to access the properties I created within the activity (Bottom)
So ultimately, what do I need to do in order to make this a valid, recognized object within UiPath and allow me to use those created properties in my project?
I didn’t realize UiPath had imported my class in and I needed to explicitly type it as such, setting the output of my activity to object type of “Car” did it, thanks!