Buzzr Sports Engine API
    Preparing search index...

    Type Alias DfsDnpPolicy

    DfsDnpPolicy:
        | {
            refundIfBelowMinimum?: boolean;
            type: "remove_leg";
            voidIfNoSurvivors?: boolean;
        }
        | { type: "loss" }
        | { reasonCode?: string; type: "manual" }
        | {
            resolve: (
                input: {
                    context: DfsSettlementContext;
                    entry: DfsEntryInput;
                    leg: DfsLegInput;
                },
            ) => DfsLegOutcome;
            type: "custom";
        }