@openpit/engine
    Preparing search index...

    Interface PolicyDecision

    A pre-trade decision: rejects to raise and/or mutations to stage. An empty decision (no rejects, no mutations) accepts the order.

    interface PolicyDecision {
        mutations?: Iterable<PolicyMutation, any, any>;
        rejects?: Iterable<PolicyReject, any, any>;
    }
    Index
    mutations?: Iterable<PolicyMutation, any, any>
    rejects?: Iterable<PolicyReject, any, any>