I\'m trying to build a plugin that does some operations on a salesorder. I also have to set a order as fulfilled. I found on the SDK documentation an extract that must be us
Since OrderClose is not a class, but the name of a Property, you cannot create it using new.
OrderClose
new
As the property is of type Entity, you need to create an instance of Entity like this:
Entity
request.OrderClose = new Entity();