@stigg/js-client-sdk - v4.12.0
    Preparing search index...

    Type Alias CreditCostEstimationFragment

    type CreditCostEstimationFragment = {
        __typename?: "CreditCostEstimation";
        estimates: {
            __typename?: "CurrencyEstimate";
            balanceAfterEstimate: number;
            breakdown: {
                __typename?: "EstimationBreakdownItem";
                cost: number;
                featureId: string;
                warningCode?: EstimationWarningCode | null;
            }[];
            currencyId: string;
            currentBalance: number;
            estimatedCost: number;
            wouldOverdraft: boolean;
        }[];
        warnings: EstimationRequestWarning[];
    }
    Index

    Properties

    __typename?: "CreditCostEstimation"
    estimates: {
        __typename?: "CurrencyEstimate";
        balanceAfterEstimate: number;
        breakdown: {
            __typename?: "EstimationBreakdownItem";
            cost: number;
            featureId: string;
            warningCode?: EstimationWarningCode | null;
        }[];
        currencyId: string;
        currentBalance: number;
        estimatedCost: number;
        wouldOverdraft: boolean;
    }[]