@openpit/engine
    Preparing search index...

    Interface PolicyAccountAdjustmentResult

    Accepted result returned by Policy.applyAccountAdjustment. Every field is optional; an empty object contributes no result. A nonempty runtime object must contain at least one recognized field. Additional fields are allowed when a recognized field is present.

    interface PolicyAccountAdjustmentResult {
        accountAdjustments?: Iterable<
            AccountOutcomeEntry
            | PolicyAccountOutcomeEntry,
            any,
            any,
        >;
        accountBlocks?: Iterable<AccountBlock, any, any>;
        mutations?: Iterable<PolicyMutation, any, any>;
        rejects?: Iterable<PolicyReject, any, any>;
    }
    Index
    accountAdjustments?: Iterable<
        AccountOutcomeEntry
        | PolicyAccountOutcomeEntry,
        any,
        any,
    >
    accountBlocks?: Iterable<AccountBlock, any, any>
    mutations?: Iterable<PolicyMutation, any, any>
    rejects?: Iterable<PolicyReject, any, any>