@nebius/js-sdk - v0.1.4
    Preparing search index...

    Detailed cost breakdown showing individual SKU costs and totals.

    interface CostBreakdown {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.billing.v1alpha1.CostBreakdown";
        cost: string;
        costRounded: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.billing.v1alpha1.CostBreakdown"
    cost: string

    Total cost as a decimal string. Represents the sum of all SKU costs with full precision. Example: "42.123456789" for precise billing calculations.

    costRounded: string

    Total cost rounded up to 2 decimal places. Example: "42.13"