Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi,
I have dynamic JavaScript service , like : let result = Things[thingName][serviceName](serviceParam);
How can I get the base type of the result for such a dynamic service ?
Regards,
Sean
Solved! Go to Solution.
@seanccc ,
You can use the GetServiceDefinition() service on a Thing and it will tell you the return type. Hope that helps.
var result = Things["myThing"].GetServiceDefinition({
name: "myService" /* STRING */
});
The return result type is based on the service what you are calling. Different service will return different object type. You need to check the return type of the exact service.
@seanccc ,
You can use the GetServiceDefinition() service on a Thing and it will tell you the return type. Hope that helps.
var result = Things["myThing"].GetServiceDefinition({
name: "myService" /* STRING */
});
Hi @seanccc.
If your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others with the same question.
Regards.
--Sharon