EntityCommandResponse
Type, Introduced in version 2.18
This is the response type of all state commands available in the system. As long as a command uses this return-type, it can be used with the command batching system.
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
RootEntityId | Int64 | The business key identifier of the root entity in the context of the command. This is usually the parent entity of the parent that has been changed. |
|
EntityId | Int64 | The business key identifier of the main entity in the context of the command. This is always the entity that has been changed by the command. |
|
CommandName | String | The name of the command that was invoked. |
|
Data | String | Extended return-data of the command encoded as JSON. |
Example
{
"RootEntityId": 0,
"EntityId": 0,
"CommandName": null,
"Data": null
}