``` json
{
     "name": "NewBillingAccount",
     "description": "Creates a new billing account for the customer",
     "type": "ORDER",
     "eventType": "NORMAL",
     "rules": [
         {
             "name": "FLUENTRETAIL.base.CreateBillingAccount",
             "props": {
                 "eventName": "ProcessBillingAccount",
                 "billingAccountType": "CUSTOMER"
             }
         }
     ],
     "triggers": [
         {
             "status": "PENDING_PAYMENT"
         },
         {
             "status": "CREATED"
         },
         {
             "status": "BOOKED"
         }
     ],
     "userActions": []
 }
```