Set value of property from RemoteThing
I have a Thing with some properties from RemoteThings.
The type of the 'IndustrialThing' property is Thing.
![]()
Manually, I can set the value to 'ANOTHERTHING' if I want to, but I want to set it through a service using code.
I've tried the code below, it gives no errors, but it doesn't work.
var params = {
propertyName: 'IndustrialThing',
propertyValue: 'ANOTHERTHING'
};
Things['MYTHING'].SetPropertyValues(params);

