Closed
Description
What would you like to be added:
Would be nice to have a way to define the order in witch are serialized the properties.
For example, for eventstate
, type
and exclusive
properties are always printed in first place:
"states": [
{
"type": "event",
"exclusive": true,
"name": "StoreCarAuctionBid",
"onEvents": [
.....
]
Instead should be:
"states": [
{
"name": "StoreCarAuctionBid",
"type": "event",
"exclusive": true,
"onEvents": [
.....
]
Why is this needed: