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>;
}

Properties

Properties

mutations?: Iterable<PolicyMutation, any, any>
rejects?: Iterable<PolicyReject, any, any>